smithy

ref: 1fd46d86263f42262118002e50aa3cde8bcb6485

./Makefile


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
BUILD_VERSION ?= $(shell git describe --always --abbrev=40 --dirty)

LDFLAGS="-X github.com/honza/smithy/cmd.SmithyVersion=${BUILD_VERSION}"

all:
	statik -src=include -dest=pkg -f -m
	CGO_ENABLED=0 go build -ldflags $(LDFLAGS) -o smithy main.go

gofmt:
	go fmt ./pkg/... ./cmd/...