diff options
author | Marvin Borner | 2020-12-18 13:17:29 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-18 13:17:29 +0100 |
commit | 214a554dcf606e1918e4c0cca22fa31d993c089c (patch) | |
tree | 371a625dc62cce461fc70b88d241f1cdd43f4df6 /2020/18/Makefile | |
parent | ccc76359ae484261758e7bf429b65ef31d646919 (diff) |
Argh all test cases pass :O
Diffstat (limited to '2020/18/Makefile')
-rw-r--r-- | 2020/18/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/18/Makefile b/2020/18/Makefile new file mode 100644 index 0000000..9c7ab36 --- /dev/null +++ b/2020/18/Makefile @@ -0,0 +1,10 @@ +.PHONY: solve.c + +solve.o: solve.c + @gcc -g -Ofast $+ -o $@ + +clean: + @rm -f *.o + +run: solve.o + @./solve.o |