aboutsummaryrefslogtreecommitdiff
path: root/2020/01/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '2020/01/Makefile')
-rw-r--r--2020/01/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/01/Makefile b/2020/01/Makefile
new file mode 100644
index 0000000..6ed5323
--- /dev/null
+++ b/2020/01/Makefile
@@ -0,0 +1,10 @@
+.PHONY: solve.cs
+
+solve.exe: solve.cs
+ @mcs $+
+
+clean:
+ @rm -f solve.exe
+
+run: solve.exe
+ @mono $+