summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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)
+