Skip to content
Snippets Groups Projects
Commit 92535234 authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

Makefile.include: add an assert that .DEFAULT_GOAL is all

parent fff58101
No related branches found
No related tags found
No related merge requests found
......@@ -593,4 +593,9 @@ CFLAGS += -include '$(RIOTBUILD_CONFIG_HEADER_C)'
# include mcuboot support
include $(RIOTMAKE)/mcuboot.mk
# Sanity check, 'all' should be the default goal
ifneq (all, $(.DEFAULT_GOAL))
$(error .DEFAULT_GOAL := $(.DEFAULT_GOAL))
endif
endif # BOARD=none
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