aboutsummaryrefslogtreecommitdiff
path: root/day02/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'day02/Makefile')
-rw-r--r--day02/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/day02/Makefile b/day02/Makefile
new file mode 100644
index 0000000..347e7e5
--- /dev/null
+++ b/day02/Makefile
@@ -0,0 +1,13 @@
+DAY = 02
+
+.PHONY: run clean
+
+run: build
+ docker run -it --rm aoc2019day$(DAY)
+
+build: part* input
+ docker build -t aoc2019day$(DAY) .
+ touch build
+
+clean:
+ rm -f build