From: Fred Sundvik Date: Sun, 7 Aug 2016 15:15:45 +0000 (+0300) Subject: Print error when building non-existing keyboard X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1ad5578d11b0b4a7288c3fd0748de3a57f4180f2;p=qmk_firmware.git Print error when building non-existing keyboard --- diff --git a/Makefile b/Makefile index a9a2d98fc..623e4b064 100644 --- a/Makefile +++ b/Makefile @@ -104,6 +104,9 @@ define PARSE_RULE $$(eval $$(call PARSE_ALL_KEYBOARDS)) else ifeq ($$(call TRY_TO_MATCH_RULE_FROM_LIST,$$(KEYBOARDS)),true) $$(eval $$(call PARSE_KEYBOARD,$$(MATCHED_ITEM))) + else + $$(info make: *** No rule to make target '$1'. Stop.) + exit 1 endif endef