diff options
author | Marvin Borner | 2020-12-01 18:24:31 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-01 18:24:31 +0100 |
commit | 147ee33b30d12cce8a1285f456a0ec9d9b31bb1b (patch) | |
tree | 896b46ed5a8699ca9e0ae52ebe84d39240cf0b4c /2020/1/Makefile |
Added files for first day
I wrote this in school, sorry for no documentation etc
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 |