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