aboutsummaryrefslogtreecommitdiff
path: root/day01/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'day01/Makefile')
-rw-r--r--day01/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/day01/Makefile b/day01/Makefile
index 25b5946..759867a 100644
--- a/day01/Makefile
+++ b/day01/Makefile
@@ -1,6 +1,6 @@
DAY = 01
-.PHONY: run
+.PHONY: run clean
run: build
sudo docker run -it --rm aoc2018day$(DAY)
@@ -8,3 +8,6 @@ run: build
build: part* input
sudo docker build -t aoc2018day$(DAY) .
touch build
+
+clean:
+ rm -f build