hostess/Makefile

9 lines
173 B
Makefile

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