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