You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hostess/Makefile

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