hostess/Makefile
2015-02-04 21:21:03 -08:00

12 lines
214 B
Makefile

all: build test
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