1
0
Fork 0
gilo/Makefile

17 lines
308 B
Makefile
Raw Normal View History

2021-03-30 19:37:02 -04:00
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