From 49c81f56b9262a41335f36a727c8125e349b1487 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 3 Oct 2022 11:06:28 +0200 Subject: no more duplicate makefiles --- makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..71eabae --- /dev/null +++ b/makefile @@ -0,0 +1,8 @@ +MK = make -j +WEKEN = $(wildcard week-*) + +all: + $(foreach WEEK,$(WEKEN), $(MK) -C $(WEEK);) + +clean: + $(foreach WEEK,$(WEKEN), $(MK) -C $(WEEK) clean;) -- cgit v1.2.3