From fba03cf4e13783d2d0c355c1a7d7c0799762aea5 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sat, 4 Feb 2023 16:15:14 +0100 Subject: week 1 deel 1 (initial commit) --- makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..acb6c56 --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +MK = make -j +WEKEN := $(wildcard oop*w*) +TARGETS := all clean compile_commands zip + +_: all + +.PHONY: $(TARGETS) $(WEKEN) +$(TARGETS): $(WEKEN) +$(WEKEN): + $(MK) -C $@ $(MAKECMDGOALS) + -- cgit v1.2.3