aboutsummaryrefslogtreecommitdiff
path: root/opdracht-2/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-10-04 17:10:08 +0200
committerlonkaars <loek@pipeframe.xyz>2022-10-04 17:10:08 +0200
commit8531a023f0a3db50897ea77f38a5d59909a97825 (patch)
treed317a69c0bb844b86b4a0a2f16651adc20482144 /opdracht-2/makefile
parentdf4e9faf60be8039af715c60a1fd7b21da8b99c5 (diff)
makefile build instead of janky shell scripts
Diffstat (limited to 'opdracht-2/makefile')
-rw-r--r--opdracht-2/makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/opdracht-2/makefile b/opdracht-2/makefile
new file mode 100644
index 0000000..19a0072
--- /dev/null
+++ b/opdracht-2/makefile
@@ -0,0 +1,9 @@
+TARGET = opdracht-2
+RESET_SQL += ../opdracht-1/.tmp.sql
+
+all: $(TARGET).md
+
+../opdracht-1/.tmp.sql:
+ make -C ../opdracht-1
+
+include ../common.mk