1
0
Fork 0
mirror of https://github.com/Luzifer/aoc2019.git synced 2024-10-18 03:04:19 +00:00
aoc2019/Makefile
Knut Ahlers c4133300d0
Add make target to execute single days
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-12-06 14:26:43 +01:00

11 lines
249 B
Makefile

default: fulltest
fulltest:
mkdir -p cover
go test -cover -coverprofile ./cover/cover.profile -v *.go
go tool cover -html ./cover/cover.profile -o ./cover/index.html
day%:
go test -cover -v \
day$*.go day$*_test.go \
helpers.go intcode.go