aboutsummaryrefslogtreecommitdiff
path: root/2020/25/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-12-25 17:54:42 +0100
committerMarvin Borner2020-12-25 17:54:42 +0100
commit87b3a0997e7ee1b9b3a07f6339261dd954a65584 (patch)
tree077be118bf92f6e8967c9cd1a46736daff1f8808 /2020/25/Makefile
parent358a69b13e6c7ccae5218ff7e871b5d68ea07a79 (diff)
Merry christmas!
Diffstat (limited to '2020/25/Makefile')
-rw-r--r--2020/25/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/25/Makefile b/2020/25/Makefile
new file mode 100644
index 0000000..fc2ff1a
--- /dev/null
+++ b/2020/25/Makefile
@@ -0,0 +1,10 @@
+.PHONY: solve.c
+
+solve.o: solve.c
+ @gcc -Ofast $+ -o $@
+
+clean:
+ @rm -f *.o
+
+run: solve.o
+ @./solve.o