17 lines
308 B
Makefile
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
|