cli/Makefile

9 lines
100 B
Makefile

TARGETS := $(shell ls scripts)
$(TARGETS):
@./scripts/$@
.DEFAULT_GOAL := ci
.PHONY: $(TARGETS)