aozhiwei bc4e93b5c4 1
2024-06-03 17:00:56 +08:00

18 lines
375 B
Makefile

compile:
@. /etc/profile
@export GOPROXY=https://goproxy.io
@go build -gcflags=all="-N -l" -o ../../bin/nftserver/bin
@echo "compile done"
debug:
@. /etc/profile
@export GOPROXY=https://goproxy.io
@go build -gcflags=all="-N -l" -ldflags "-X q5.optDebug=1" -o ../../bin/nftserver/bin
@echo "compile done"
clean:
@rm -f ../../bin/nftserver/bin
@echo "clean done"