加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sergei Morozov 提交于 2019-12-24 23:18 . Release 1.25.0
TARGET = phpbrew
SIGNATURE = $(TARGET).asc
CP = cp
INSTALL_PATH = /usr/local/bin
TEST = phpunit
$(TARGET): vendor $(shell find bin/ shell/ src/ -type f) box.json.dist .git/HEAD
box compile
touch -c $@
vendor: composer.lock
composer install
touch $@
.PHONY: sign
sign: $(SIGNATURE)
$(SIGNATURE): $(TARGET)
gpg --armor --detach-sign $(TARGET)
install: $(TARGET)
$(CP) $(TARGET) $(INSTALL_PATH)
update/completion:
bin/phpbrew zsh --bind phpbrew --program phpbrew > completion/zsh/_phpbrew
bin/phpbrew bash --bind phpbrew --program phpbrew > completion/bash/_phpbrew
test:
$(TEST)
clean:
git checkout -- $(TARGET)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化