Makefile 232 B

1234567891011
  1. BINARY="build/iot_service"
  2. VERSION=1.0.0
  3. BASH_PATH=D:\Programs\Git\bin\bash.exe
  4. export GOARCH=amd64 #环境变量设置
  5. export GOOS=linux
  6. build:
  7. @go build -o ${BINARY} ./
  8. push-test:
  9. ${BASH_PATH} ./push.sh
  10. .PHONY: build push-test