aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7180b4147..a14642af6 100644
--- a/Makefile
+++ b/Makefile
@@ -105,6 +105,15 @@ define PARSE_RULE
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),) 107 else ifneq ($$(KEYBOARD),)
108 # If there's no match in the beginning, then use the working directory instead
109 # First add the keymap to the commandline if we are in a keymap subdirectory
110 ifneq ($$(KEYMAP),)
111 RULE := $$(KEYMAP)-$$(RULE)
112 endif
113 # If we are in a subproject subdirectory add the subproject
114 ifneq ($$(SUBPROJECT),)
115 RULE := $$(SUBPROJECT)-$$(RULE)
116 endif
108 $$(eval $$(call PARSE_KEYBOARD,$$(KEYBOARD))) 117 $$(eval $$(call PARSE_KEYBOARD,$$(KEYBOARD)))
109 else 118 else
110 $$(info make: *** No rule to make target '$1'. Stop.) 119 $$(info make: *** No rule to make target '$1'. Stop.)