etcdhelper/Makefile
2022-05-13 17:55:01 +02:00

10 lines
158 B
Makefile

all: build
.PHONY: fmt
fmt: ## Run go fmt against code.
go fmt ./...
.PHONY: build
build: fmt
go build -ldflags "-s -w" -o build/etcdhelper etcdhelper.go