Print error when building non-existing keyboard

master
Fred Sundvik 2016-08-07 18:15:45 +03:00
parent a6d3500024
commit 1ad5578d11
1 changed files with 3 additions and 0 deletions

View File

@ -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