Skip to content
Snippets Groups Projects
Commit 8986b982 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

make: check if APPLICATION is set

Fixes #1282.
parent 49a7368c
No related branches found
No related tags found
No related merge requests found
...@@ -129,6 +129,9 @@ ifeq (,$(UNZIP_HERE)) ...@@ -129,6 +129,9 @@ ifeq (,$(UNZIP_HERE))
endif endif
endif endif
ifeq (, ${APPLICATION})
$(error An application name must be specified as APPLICATION.)
endif
ifneq (0,$(shell test -d $(RIOTBOARD)/$(BOARD); echo $$?)) ifneq (0,$(shell test -d $(RIOTBOARD)/$(BOARD); echo $$?))
$(error The specified board $(BOARD) does not exist.) $(error The specified board $(BOARD) does not exist.)
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment