smithy

ref: d2e5bba41004ca2203c43db0f6668cac1de2e855

./Makefile


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

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

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

bin/statik:
	mkdir -p bin
	go mod download
	go build -o bin/statik $(GOPATH)/src/github.com/rakyll/statik/statik.go

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