diff options
author | fauxpark <fauxpark@gmail.com> | 2019-02-03 01:26:35 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-05 09:49:24 -0800 |
commit | 6172273c866637c06150647cacf1477d8c8075c9 (patch) | |
tree | 6da6874d693b496676bfbfa6e7f21b20b8bebbc2 /Makefile | |
parent | cb1aeb425488aaff11416caa0960c8b87801baf5 (diff) |
These targets should be .PHONY
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -112,6 +112,7 @@ $(eval $(call GET_KEYBOARDS)) # Only consider folders with makefiles, to prevent errors in case there are extra folders #KEYBOARDS += $(patsubst $(ROOD_DIR)/keyboards/%/rules.mk,%,$(wildcard $(ROOT_DIR)/keyboards/*/*/rules.mk)) +.PHONY: list-keyboards list-keyboards: echo $(KEYBOARDS) exit 0 @@ -120,10 +121,12 @@ define PRINT_KEYBOARD $(info $(PRINTING_KEYBOARD)) endef +.PHONY: generate-keyboards-file generate-keyboards-file: $(foreach PRINTING_KEYBOARD,$(KEYBOARDS),$(eval $(call PRINT_KEYBOARD))) exit 0 +.PHONY: clean clean: echo 'Deleting .build/ ...' rm -rf $(BUILD_DIR) @@ -579,6 +582,7 @@ lib/%: git submodule sync $? git submodule update --init $? +.PHONY: git-submodule git-submodule: git submodule sync --recursive git submodule update --init --recursive --progress |