소스 검색

Print error when building non-existing keyboard

Fred Sundvik 8 년 전
부모
커밋
1ad5578d11
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Makefile

+ 3 - 0
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