aboutsummaryrefslogtreecommitdiff
path: root/day05/Makefile
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2019-12-05 13:44:02 +0000
committerNat Lasseter <user@4574.co.uk>2019-12-05 13:44:02 +0000
commitfdaf6d524f2805fbba25eef2572eee9768f25a40 (patch)
treeadf912a51102c98366eba7952857ab38fccb6ec3 /day05/Makefile
parente88f1129a40134fb60a2e90b495327f6ccada871 (diff)
Day 05
Diffstat (limited to 'day05/Makefile')
-rw-r--r--day05/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/day05/Makefile b/day05/Makefile
new file mode 100644
index 0000000..22cc50e
--- /dev/null
+++ b/day05/Makefile
@@ -0,0 +1,14 @@
+DAY = 05
+
+.PHONY: run clean
+
+run: build
+ docker run -it --rm aoc2019day$(DAY)
+
+build: part* input
+ docker build -t aoc2019day$(DAY) .
+ touch build
+
+clean:
+ docker image rm -f aoc2019day$(DAY)
+ rm -f build