aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-02-03 01:26:35 +1100
committerDrashna Jaelre <drashna@live.com>2019-02-05 09:49:24 -0800
commit6172273c866637c06150647cacf1477d8c8075c9 (patch)
tree6da6874d693b496676bfbfa6e7f21b20b8bebbc2 /Makefile
parentcb1aeb425488aaff11416caa0960c8b87801baf5 (diff)
downloadqmk_firmware-6172273c866637c06150647cacf1477d8c8075c9.tar.gz
qmk_firmware-6172273c866637c06150647cacf1477d8c8075c9.zip
These targets should be .PHONY
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 73fd8dc89..c7dda23dc 100644
--- a/Makefile
+++ b/Makefile
@@ -112,6 +112,7 @@ $(eval $(call GET_KEYBOARDS))
112# Only consider folders with makefiles, to prevent errors in case there are extra folders 112# Only consider folders with makefiles, to prevent errors in case there are extra folders
113#KEYBOARDS += $(patsubst $(ROOD_DIR)/keyboards/%/rules.mk,%,$(wildcard $(ROOT_DIR)/keyboards/*/*/rules.mk)) 113#KEYBOARDS += $(patsubst $(ROOD_DIR)/keyboards/%/rules.mk,%,$(wildcard $(ROOT_DIR)/keyboards/*/*/rules.mk))
114 114
115.PHONY: list-keyboards
115list-keyboards: 116list-keyboards:
116 echo $(KEYBOARDS) 117 echo $(KEYBOARDS)
117 exit 0 118 exit 0
@@ -120,10 +121,12 @@ define PRINT_KEYBOARD
120 $(info $(PRINTING_KEYBOARD)) 121 $(info $(PRINTING_KEYBOARD))
121endef 122endef
122 123
124.PHONY: generate-keyboards-file
123generate-keyboards-file: 125generate-keyboards-file:
124 $(foreach PRINTING_KEYBOARD,$(KEYBOARDS),$(eval $(call PRINT_KEYBOARD))) 126 $(foreach PRINTING_KEYBOARD,$(KEYBOARDS),$(eval $(call PRINT_KEYBOARD)))
125 exit 0 127 exit 0
126 128
129.PHONY: clean
127clean: 130clean:
128 echo 'Deleting .build/ ...' 131 echo 'Deleting .build/ ...'
129 rm -rf $(BUILD_DIR) 132 rm -rf $(BUILD_DIR)
@@ -579,6 +582,7 @@ lib/%:
579 git submodule sync $? 582 git submodule sync $?
580 git submodule update --init $? 583 git submodule update --init $?
581 584
585.PHONY: git-submodule
582git-submodule: 586git-submodule:
583 git submodule sync --recursive 587 git submodule sync --recursive
584 git submodule update --init --recursive --progress 588 git submodule update --init --recursive --progress