mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-22 16:34:38 +00:00
Add backwards compability with makefile variables
This commit is contained in:
parent
4f20061f66
commit
459ddaceda
1 changed files with 14 additions and 0 deletions
14
Makefile
14
Makefile
|
@ -42,6 +42,20 @@ $(info $(ROOT_DIR)/keyboards)
|
||||||
# Only consider folders with makefiles, to prevent errors in case there are extra folders
|
# Only consider folders with makefiles, to prevent errors in case there are extra folders
|
||||||
KEYBOARDS := $(notdir $(patsubst %/Makefile,%,$(wildcard $(ROOT_DIR)/keyboards/*/Makefile)))
|
KEYBOARDS := $(notdir $(patsubst %/Makefile,%,$(wildcard $(ROOT_DIR)/keyboards/*/Makefile)))
|
||||||
|
|
||||||
|
#Compability with the old make variables
|
||||||
|
ifdef keyboard
|
||||||
|
KEYBOARD := $(keyboard)
|
||||||
|
endif
|
||||||
|
ifdef sub
|
||||||
|
SUBPROJECT := $(sub)
|
||||||
|
endif
|
||||||
|
ifdef subproject
|
||||||
|
SUBPROJECT := $(subproject)
|
||||||
|
endif
|
||||||
|
ifdef keymap
|
||||||
|
KEYMAP := $(keymap)
|
||||||
|
endif
|
||||||
|
|
||||||
$(info Keyboard: $(KEYBOARD))
|
$(info Keyboard: $(KEYBOARD))
|
||||||
$(info Keymap: $(KEYMAP))
|
$(info Keymap: $(KEYMAP))
|
||||||
$(info Subproject: $(SUBPROJECT))
|
$(info Subproject: $(SUBPROJECT))
|
||||||
|
|
Loading…
Reference in a new issue