aboutsummaryrefslogtreecommitdiff
path: root/2020/15/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '2020/15/Makefile')
-rw-r--r--2020/15/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/15/Makefile b/2020/15/Makefile
new file mode 100644
index 0000000..9c7ab36
--- /dev/null
+++ b/2020/15/Makefile
@@ -0,0 +1,10 @@
+.PHONY: solve.c
+
+solve.o: solve.c
+ @gcc -g -Ofast $+ -o $@
+
+clean:
+ @rm -f *.o
+
+run: solve.o
+ @./solve.o