Ai
1 Star 0 Fork 0

fox_ghost/script-commands

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 777 Bytes
一键复制 编辑 原始数据 按行查看 历史
EXECUTABLE_NAME = toolkit
TOOLKIT_PATH = Tools/Toolkit
BUILD_PATH_RELEASE = $(TOOLKIT_PATH)/.build/release
EXECUTABLE_PATH_RELEASE = $(BUILD_PATH_RELEASE)/Toolkit
BUILD_PATH_DEBUG = $(TOOLKIT_PATH)/.build/debug
EXECUTABLE_PATH_DEBUG= $(BUILD_PATH_DEBUG)/Toolkit
clean:
rm -rf $(TOOLKIT_PATH)/.build $(EXECUTABLE_NAME)
build: clean
swift build -c release --disable-sandbox --arch x86_64 --package-path $(TOOLKIT_PATH)
ln -s $(EXECUTABLE_PATH_RELEASE) $(EXECUTABLE_NAME)
build-debug:
if [ -f $(EXECUTABLE_NAME) ]; then rm $(EXECUTABLE_NAME); fi
swift build --package-path $(TOOLKIT_PATH)
ln -s $(EXECUTABLE_PATH_DEBUG) $(EXECUTABLE_NAME)
gen-docs:
./$(EXECUTABLE_NAME) generate-documentation
gen-docs-and-commit: gen-docs
./$(TOOLKIT_PATH)/integration.sh commit
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/typesugar_chenchao/script-commands.git
git@gitee.com:typesugar_chenchao/script-commands.git
typesugar_chenchao
script-commands
script-commands
master

搜索帮助