gpio-webhook-server/Makefile

14 lines
219 B
Makefile
Raw Permalink Normal View History

2020-05-25 20:47:48 +00:00
.PHONY: all build lint clean
2020-05-11 16:28:37 +00:00
all: lint build
lint:
golint ./...
2020-05-11 16:28:37 +00:00
build:
2020-05-25 20:47:48 +00:00
mkdir -p build/
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags '-w' -o build/gpio-webhook-server ./cmd/server
clean:
2020-05-11 16:28:37 +00:00
rm -rf build/