Commit 92a12d22 authored by 邱阿朋's avatar 邱阿朋

refactor(build): 重构Makefile的构建目标和文件名

- 修改build目标,替换旧的tools_gui、super_gui和price_gui为vc_shop、vc_manager和vc_price
- 将build_super重命名为shop,生成对应的vc_shop可执行文件
- 将build_tools重命名为manager,生成对应的vc_manager可执行文件
- 将build_price重命名为price,生成对应的vc_price可执行文件
- 保持clean目标不变,删除所有.spec文件
parent a326b311
......@@ -18,21 +18,21 @@ install:
build:
@echo "version: $(VERSION)"
pyinstaller $(PYI_FLAGS) -n tools_gui_$(VERSION).exe tool_gui.py
pyinstaller $(PYI_FLAGS) -n super_gui_$(VERSION).exe super_gui.py
pyinstaller $(PYI_FLAGS) -n price_gui_$(VERSION).exe price_gui.py
pyinstaller $(PYI_FLAGS) -n vc_shop_$(VERSION).exe vc_shop.py
pyinstaller $(PYI_FLAGS) -n vc_manager_$(VERSION).exe vc_manager.py
pyinstaller $(PYI_FLAGS) -n vc_price_$(VERSION).exe vc_price.py
build_super:
shop:
@echo "version: $(VERSION)"
pyinstaller $(PYI_FLAGS) -n super_gui_$(VERSION).exe super_gui.py
pyinstaller $(PYI_FLAGS) -n vc_shop_$(VERSION).exe vc_shop.py
build_tools:
manager:
@echo "version: $(VERSION)"
pyinstaller $(PYI_FLAGS) -n tools_gui_$(VERSION).exe tool_gui.py
pyinstaller $(PYI_FLAGS) -n vc_manager_$(VERSION).exe vc_manager.py
build_price:
price:
@echo "version: $(VERSION)"
pyinstaller $(PYI_FLAGS) -n price_gui_$(VERSION).exe price_gui.py
pyinstaller $(PYI_FLAGS) -n vc_price_$(VERSION).exe vc_price.py
clean:
rm -f *.spec
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment