10 lines
190 B
Makefile
10 lines
190 B
Makefile
|
default: build
|
||
|
|
||
|
build: export CGO_ENABLED=0
|
||
|
build:
|
||
|
go build \
|
||
|
-ldflags "-X main.version=$(shell git describe --tags --always || echo dev)" \
|
||
|
-mod=readonly \
|
||
|
-modcacherw \
|
||
|
-trimpath
|