diff options
author | Marvin Borner | 2020-12-04 22:29:36 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-04 22:29:36 +0100 |
commit | 24091cc157b1f32458bee8200dc302f906c4d4de (patch) | |
tree | 835bcd79a08fa9ca54f4f51f5098913622874a4d /2020/4/Makefile | |
parent | 0134ebd5dac9754045e619423cacca14f8fedb0d (diff) |
Very ugly 4th solution
Diffstat (limited to '2020/4/Makefile')
-rw-r--r-- | 2020/4/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/4/Makefile b/2020/4/Makefile new file mode 100644 index 0000000..7f68e56 --- /dev/null +++ b/2020/4/Makefile @@ -0,0 +1,10 @@ +.PHONY: solve.c + +solve.o: solve.c + @gcc $+ -o $@ -lm + +clean: + @rm -f *.o + +run: solve.o + @./solve.o |