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

.PHONY: run

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

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