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

.PHONY: run clean

run: build
	sudo docker run -it --rm aoc2018day$(DAY)

build: part* input
	sudo docker build -t aoc2018day$(DAY) .
	touch build

clean:
	rm -f build