aboutsummaryrefslogtreecommitdiff
path: root/day17/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'day17/Makefile')
-rw-r--r--day17/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/day17/Makefile b/day17/Makefile
new file mode 100644
index 0000000..6a2ac45
--- /dev/null
+++ b/day17/Makefile
@@ -0,0 +1,14 @@
+DAY = 17
+
+.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