aboutsummaryrefslogtreecommitdiff
path: root/day16/Makefile
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2019-10-27 23:40:26 +0000
committerNat Lasseter <user@4574.co.uk>2019-10-27 23:40:26 +0000
commit11d885209c61828b6fc15815c04cf8556be70fe8 (patch)
tree87a4973803b0b4bb5d8b92bb294f16f02148e733 /day16/Makefile
parent487c3425a23ef52c6de3c045f1110d5e7342d042 (diff)
day16, part1, and whodawhatnow not working
Diffstat (limited to 'day16/Makefile')
-rw-r--r--day16/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/day16/Makefile b/day16/Makefile
new file mode 100644
index 0000000..703fbcf
--- /dev/null
+++ b/day16/Makefile
@@ -0,0 +1,17 @@
+DAY = 16
+
+.PHONY: run clean push
+
+run: build
+ docker run -it --rm aoc2018day$(DAY)
+
+build: part* input
+ docker build -t aoc2018day$(DAY) .
+ touch build
+
+clean:
+ rm -f build
+
+push: build
+ docker tag aoc2018day$(DAY) advent.4574.co.uk/aoc2018day$(DAY)
+ docker push advent.4574.co.uk/aoc2018day$(DAY)