9 lines
268 B
Makefile
9 lines
268 B
Makefile
.PHONY: lint build
|
|
.DEFAULT_GOAL = build
|
|
|
|
lint:
|
|
golangci-lint run --config .golangci.yml
|
|
|
|
build:
|
|
CGO_ENABLED=0 go build -v -tags netgo -ldflags "-X github.com/zenofile/transfer.sh/cmd.Version=$$(git describe --tags) -a -s -w -extldflags '-static'" -o dist/transfer
|
|
|