summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-02-04 16:15:14 +0100
committerlonkaars <loek@pipeframe.xyz>2023-02-04 16:15:18 +0100
commitfba03cf4e13783d2d0c355c1a7d7c0799762aea5 (patch)
tree37ec42b299ecf6ec64d3607954279658c4a6635e /makefile
week 1 deel 1 (initial commit)
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 11 insertions, 0 deletions
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)
+