dsnet/Makefile
Andre Kelpe ea5b7d105b adds make quick target
adds a new target that compiles dsnet w/o running upx for quicker
development builds
2020-12-05 23:36:56 +01:00

18 lines
302 B
Makefile

.PHONY: all build compile quick
all: build
compile:
CGO_ENABLED=0 GOOS=linux go build -mod=vendor -a -ldflags="-s -w" -o dist/dsnet ./cmd/dsnet.go
build: compile
upx dist/dsnet
quick: compile
update_deps:
# `go mod vendor` initialises vendoring system
go get
go mod vendor
git add -f vendor