aboutsummaryrefslogtreecommitdiff
path: root/day11/Makefile
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2019-12-11 12:58:03 +0000
committerNat Lasseter <user@4574.co.uk>2019-12-11 12:58:03 +0000
commit3bea5ec1373b842e6ad9f7cff050615e1f5ebde8 (patch)
tree7a44230c24e4e39c76e6271ac327fd4121d38abd /day11/Makefile
parent1bc6e9dd7fa439b7126770d58ac8662aaa0e4441 (diff)
Day 11
Diffstat (limited to 'day11/Makefile')
-rw-r--r--day11/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/day11/Makefile b/day11/Makefile
new file mode 100644
index 0000000..7b89f8b
--- /dev/null
+++ b/day11/Makefile
@@ -0,0 +1,14 @@
+DAY = 11
+
+.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