aboutsummaryrefslogtreecommitdiff
path: root/day12/Makefile
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2019-12-12 10:47:43 +0000
committerNat Lasseter <user@4574.co.uk>2019-12-12 10:47:43 +0000
commitc10f57e05b79ac82d8fc55c534a0e665b3e13344 (patch)
tree04dc8f45aab37ec8cffb039ac342fbb105d3511e /day12/Makefile
parent6fd5a2e117df690f4b3d79c0ca140805bbb29282 (diff)
Day 12, Part 1 only
Diffstat (limited to 'day12/Makefile')
-rw-r--r--day12/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/day12/Makefile b/day12/Makefile
new file mode 100644
index 0000000..6d578a1
--- /dev/null
+++ b/day12/Makefile
@@ -0,0 +1,14 @@
+DAY = 12
+
+.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