aboutsummaryrefslogtreecommitdiff
path: root/day01/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'day01/Makefile')
-rw-r--r--day01/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/day01/Makefile b/day01/Makefile
new file mode 100644
index 0000000..4b5665a
--- /dev/null
+++ b/day01/Makefile
@@ -0,0 +1,10 @@
+DAY = 01
+
+.PHONY: run
+
+run: build
+ sudo docker run -it --rm aoc2018day$(DAY)
+
+build:
+ sudo docker build -t aoc2018day$(DAY) .
+ touch build