8 lines
141 B
Makefile
8 lines
141 B
Makefile
|
.PHONY: all build
|
||
|
|
||
|
all: build
|
||
|
|
||
|
build:
|
||
|
GGO_ENABLED=0 GOOS=linux packr build -a -ldflags="-s -w" -o dist/dsnet ./cmd/dsnet.go
|
||
|
upx dist/dsnet
|