aboutsummaryrefslogtreecommitdiff
path: root/day19/Makefile
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2019-12-19 17:48:09 +0000
committerNat Lasseter <user@4574.co.uk>2019-12-19 17:48:09 +0000
commitcb2cfa0ac23d7daf7f7eb601783adc5f30a35d67 (patch)
tree036cfd53304efce97aaba3a2ba17f76d21c56020 /day19/Makefile
parentd3107bc313c1cf52e7df9eb9d8ec1fe402416e3c (diff)
Day19 part1, runs forever. looks like an 'understanding the input' type problem.HEADmaster
Diffstat (limited to 'day19/Makefile')
-rw-r--r--day19/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/day19/Makefile b/day19/Makefile
new file mode 100644
index 0000000..6608373
--- /dev/null
+++ b/day19/Makefile
@@ -0,0 +1,14 @@
+DAY = 19
+
+.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