aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--day01/Makefile2
-rw-r--r--day02/Makefile2
-rw-r--r--skel/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/day01/Makefile b/day01/Makefile
index 4b5665a..25b5946 100644
--- a/day01/Makefile
+++ b/day01/Makefile
@@ -5,6 +5,6 @@ DAY = 01
run: build
sudo docker run -it --rm aoc2018day$(DAY)
-build:
+build: part* input
sudo docker build -t aoc2018day$(DAY) .
touch build
diff --git a/day02/Makefile b/day02/Makefile
index 40af6b1..f57d8f4 100644
--- a/day02/Makefile
+++ b/day02/Makefile
@@ -5,6 +5,6 @@ DAY = 02
run: build
sudo docker run -it --rm aoc2018day$(DAY)
-build:
+build: part* input
sudo docker build -t aoc2018day$(DAY) .
touch build
diff --git a/skel/Makefile b/skel/Makefile
index 1bc4310..6d7a96e 100644
--- a/skel/Makefile
+++ b/skel/Makefile
@@ -5,6 +5,6 @@ DAY =
run: build
sudo docker run -it --rm aoc2018day$(DAY)
-build:
+build: part* input
sudo docker build -t aoc2018day$(DAY) .
touch build