10 lines
202 B
Makefile
10 lines
202 B
Makefile
define TOOLS_TEMPLATE
|
|
|
|
$(1) = $$(addprefix $$(TOOLS_DIR)/, $$(shell echo -n $(1) | tr A-Z a-z))
|
|
|
|
endef
|
|
|
|
TOOLS = GIT-VERSION CREATE-ISO
|
|
|
|
$(foreach tool, $(TOOLS), $(eval $(call TOOLS_TEMPLATE,$(tool))))
|