aboutsummaryrefslogtreecommitdiff
path: root/2020/4/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-12-04 22:29:36 +0100
committerMarvin Borner2020-12-04 22:29:36 +0100
commit24091cc157b1f32458bee8200dc302f906c4d4de (patch)
tree835bcd79a08fa9ca54f4f51f5098913622874a4d /2020/4/Makefile
parent0134ebd5dac9754045e619423cacca14f8fedb0d (diff)
Very ugly 4th solution
Diffstat (limited to '2020/4/Makefile')
-rw-r--r--2020/4/Makefile10
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