1
0
Fork 0
mirror of https://github.com/Luzifer/aoc2019.git synced 2024-12-22 05:51:16 +00:00
aoc2019/Makefile
Knut Ahlers 658829657b
Add solution for Day 5
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-12-05 16:53:40 +01:00

6 lines
170 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