hostess/Makefile
2015-02-04 00:14:46 -08:00

10 lines
197 B
Makefile

build:
go build hostess.go
go build cmd/main.go
test: build
go test -coverprofile=coverage.out
go tool cover -html=coverage.out -o coverage.html
install: build test
cp main /usr/sbin/hostess