aboutsummaryrefslogtreecommitdiff
path: root/day01/Makefile
blob: b5b72198ba41011d10c91b9e7d59af4cd66d2cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DAY = 01

.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