7 lines
144 B
Makefile
7 lines
144 B
Makefile
all:
|
|
go mod tidy
|
|
GOOS=linux GOARCH=arm64 go build -a -trimpath -gcflags=all="-l -B -e" -ldflags "-s -w"
|
|
mkdir -p ../out
|
|
mv lexipwn ../out/
|
|
|