diff options
author | Nat Lasseter <user@4574.co.uk> | 2019-12-07 09:37:54 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2019-12-07 09:37:54 +0000 |
commit | ca0ef4147392dc1260ec0d1f513bb24f568dcf1c (patch) | |
tree | 4755ebb5692c4efc7881206dbccc6ad4491cee4c /day07/Makefile | |
parent | 831d048ba23e2b518879be2773dd5abca74a8d3f (diff) |
Day 07
Diffstat (limited to 'day07/Makefile')
-rw-r--r-- | day07/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/day07/Makefile b/day07/Makefile new file mode 100644 index 0000000..479fe39 --- /dev/null +++ b/day07/Makefile @@ -0,0 +1,14 @@ +DAY = 07 + +.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 |