diff options
author | Nat Lasseter <user@4574.co.uk> | 2019-12-10 11:05:55 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2019-12-10 11:05:55 +0000 |
commit | 1bc6e9dd7fa439b7126770d58ac8662aaa0e4441 (patch) | |
tree | a611ddcfd31b182c7af84f52850e8a450df9ea0a /day10/Makefile | |
parent | c8d92acd37d553e98ec312ca172c374138d7798a (diff) |
Day 10
Diffstat (limited to 'day10/Makefile')
-rw-r--r-- | day10/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/day10/Makefile b/day10/Makefile new file mode 100644 index 0000000..645a112 --- /dev/null +++ b/day10/Makefile @@ -0,0 +1,14 @@ +DAY = 10 + +.PHONY: run clean + +run: build + docker run -it --rm aoc2019day$(DAY) + +build: part* input + docker build -t aoc2019day$(DAY) . + touch build + +clean: + docker image rm -f aoc2019day$(DAY) + rm -f build |