aozhiwei fb27e0e9f9 1
2024-05-24 07:01:56 +08:00

18 lines
369 B
Makefile

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