gilo/Makefile
2021-03-30 19:37:02 -04:00

17 lines
308 B
Makefile

test:
go test timshome.page/gilo/editor timshome.page/gilo/terminal
coverage.out:
go test timshome.page/gilo/editor timshome.page/gilo/terminal -coverprofile=coverage.out
coverage: coverage.out
go tool cover -html=coverage.out
clean:
rm -f gilo
rm -f coverage.out
gilo:
go build
.PHONY: test clean