StupidOS/tools/build.mk
2023-01-17 11:41:21 +01:00

9 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))))