gpio-webhook-server/Makefile

12 lines
188 B
Makefile
Raw Normal View History

.PHONY: all build lint
2020-05-11 16:28:37 +00:00
all: lint build
lint:
golint ./...
2020-05-11 16:28:37 +00:00
build:
rm -rf build/
mkdir build/
2020-05-20 18:00:35 +00:00
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o build/gpio-webhook-server ./cmd/server