hostess/Makefile
2015-01-31 19:36:52 -08:00

10 lines
195 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
cp hostess /usr/sbin/hostess