Select Git revision
-
Will McCutchen authoredWill McCutchen authored
target-init.mk 723 B
#############################################################################################
#############################################################################################
##
## INIT-TARGETS
##
#############################################################################################
#############################################################################################
## @see .PHONY https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html#Phony-Targets
.PHONY: init
## init project
init:
$(QUIET) $(ECHO) "This is the target init"
K := $(foreach path,$(PROJECT_DIRECTORIES),\
$(shell mkir -p $(path)))
$(QUIET) $(TOUCH) $(RELEASE_FILE)
$(QUIET) $(ECHO) "Done"