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