smithy

ref: 3d17839e6dbe572acc2a357c35088e5a5aa36e81

./Makefile


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
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/...

clean:
	rm smithy
	rm -rf pkg/statik