aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 623e4b064..7180b4147 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
1STARTING_MAKEFILE := $(firstword $(MAKEFILE_LIST)) 1STARTING_MAKEFILE := $(firstword $(MAKEFILE_LIST))
2ROOT_MAKEFILE := $(lastword $(MAKEFILE_LIST)) 2ROOT_MAKEFILE := $(lastword $(MAKEFILE_LIST))
3ROOT_DIR := $(dir, $(ROOT_MAKEFILE)) 3ROOT_DIR := $(dir $(ROOT_MAKEFILE))
4ifeq ($(ROOT_DIR),) 4ifeq ($(ROOT_DIR),)
5 ROOT_DIR := . 5 ROOT_DIR := .
6endif 6endif
@@ -104,6 +104,8 @@ define PARSE_RULE
104 $$(eval $$(call PARSE_ALL_KEYBOARDS)) 104 $$(eval $$(call PARSE_ALL_KEYBOARDS))
105 else ifeq ($$(call TRY_TO_MATCH_RULE_FROM_LIST,$$(KEYBOARDS)),true) 105 else ifeq ($$(call TRY_TO_MATCH_RULE_FROM_LIST,$$(KEYBOARDS)),true)
106 $$(eval $$(call PARSE_KEYBOARD,$$(MATCHED_ITEM))) 106 $$(eval $$(call PARSE_KEYBOARD,$$(MATCHED_ITEM)))
107 else ifneq ($$(KEYBOARD),)
108 $$(eval $$(call PARSE_KEYBOARD,$$(KEYBOARD)))
107 else 109 else
108 $$(info make: *** No rule to make target '$1'. Stop.) 110 $$(info make: *** No rule to make target '$1'. Stop.)
109 exit 1 111 exit 1