diff options
author | Nat Lasseter <user@4574.co.uk> | 2019-12-02 12:58:09 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2019-12-02 12:58:09 +0000 |
commit | 423d2bcb74df7290d2d7e8d3d4aaea278cd1e98b (patch) | |
tree | b459d4fb4f3bc622c661d512f9825702c7aaf2f1 /day02/Makefile | |
parent | b1692f98b614e731cd42fc770dff77e2f3c136ff (diff) |
Day 02, though it's not going to sclae whell when we add more instructions!
Diffstat (limited to 'day02/Makefile')
-rw-r--r-- | day02/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/day02/Makefile b/day02/Makefile new file mode 100644 index 0000000..347e7e5 --- /dev/null +++ b/day02/Makefile @@ -0,0 +1,13 @@ +DAY = 02 + +.PHONY: run clean + +run: build + docker run -it --rm aoc2019day$(DAY) + +build: part* input + docker build -t aoc2019day$(DAY) . + touch build + +clean: + rm -f build |