aozhiwei 9098a00488 1
2024-10-29 16:17:40 +08:00

18 lines
381 B
Makefile

compile:
@. /etc/profile
@export GOPROXY=https://goproxy.io
@go build -gcflags=all="-N -l" -o ../../bin/wheelserver/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/wheelserver/bin
@echo "compile done"
clean:
@rm -f ../../bin/wheelserver/bin
@echo "clean done"