etcdhelper/Makefile

10 lines
158 B
Makefile
Raw Normal View History

2022-05-13 15:55:01 +00:00
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