aboutsummaryrefslogtreecommitdiff
path: root/2020/5/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-12-05 14:17:52 +0100
committerMarvin Borner2020-12-05 14:28:58 +0100
commitaac336b3596b1eb5e6819fec70302858cda3c683 (patch)
tree13305b12a6ba34e13c2cc062fbf9bf792fe9285b /2020/5/Makefile
parent24091cc157b1f32458bee8200dc302f906c4d4de (diff)
Added 5th solution
Diffstat (limited to '2020/5/Makefile')
-rw-r--r--2020/5/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/5/Makefile b/2020/5/Makefile
new file mode 100644
index 0000000..769d06d
--- /dev/null
+++ b/2020/5/Makefile
@@ -0,0 +1,10 @@
+.PHONY: solve.c
+
+solve.o: solve.c
+ @gcc $+ -o $@
+
+clean:
+ @rm -f *.o
+
+run: solve.o
+ @./solve.o