diff options
author | Nat Lasseter <user@4574.co.uk> | 2018-12-02 12:41:05 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2018-12-02 12:41:05 +0000 |
commit | 43ab0a3a7a1e095f5f33f224ce73c413f49e156c (patch) | |
tree | 1d4bfdb3385562511231f4389e29ca2279a916b1 /day02/Makefile |
Initial commit
Diffstat (limited to 'day02/Makefile')
-rw-r--r-- | day02/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/day02/Makefile b/day02/Makefile new file mode 100644 index 0000000..40af6b1 --- /dev/null +++ b/day02/Makefile @@ -0,0 +1,10 @@ +DAY = 02 + +.PHONY: run + +run: build + sudo docker run -it --rm aoc2018day$(DAY) + +build: + sudo docker build -t aoc2018day$(DAY) . + touch build |