aboutsummaryrefslogtreecommitdiff
path: root/day16/Makefile
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2019-12-19 17:00:18 +0000
committerNat Lasseter <user@4574.co.uk>2019-12-19 17:00:18 +0000
commite13f5c8cf9a0c6d1540de00fd128337c5ba02bea (patch)
tree02becb401ee47dfb1b5f5a099a587a9db9ae37d2 /day16/Makefile
parent2bb84ae6c6c71d51b445bf0b232c0eb6ca38e89b (diff)
Day16, part2 untested, runs forever
Diffstat (limited to 'day16/Makefile')
-rw-r--r--day16/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/day16/Makefile b/day16/Makefile
new file mode 100644
index 0000000..3fa0b2f
--- /dev/null
+++ b/day16/Makefile
@@ -0,0 +1,14 @@
+DAY = 16
+
+.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