diff options
Diffstat (limited to '2020/1/Makefile')
-rw-r--r-- | 2020/1/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/1/Makefile b/2020/1/Makefile new file mode 100644 index 0000000..c678ba8 --- /dev/null +++ b/2020/1/Makefile @@ -0,0 +1,10 @@ +.PHONY: run.cs + +run.exe: run.cs + @mcs $+ + +clean: + @rm -f run.exe + +run: run.exe + @mono run.exe |