Files
scheduler/Makefile

17 lines
348 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

build:
go build
deploy:
go build -o scheduler
cp ./scheduler /opt/zscww_scheduler/scheduler
cp -r FrontEnd /opt/zscww_scheduler/FrontEnd
chmod +x /opt/zscww_scheduler/scheduler
echo "部署脚本执行完成记得放入member.csv数据文件"
default: help
clean:
rm ./scheduler
help:
echo "请查看MakeFile文件查看构建选项"