加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 460 Bytes
一键复制 编辑 原始数据 按行查看 历史
Elias Dorneles 提交于 2016-06-08 23:59 . simply usage and add help
BAKE_OPTIONS=--no-input
help:
@echo "bake generate project using defaults"
@echo "watch generate project using defaults and watch for changes"
@echo "replay replay last cookiecutter run and watch for changes"
bake:
cookiecutter $(BAKE_OPTIONS) . --overwrite-if-exists
watch: bake
watchmedo shell-command -p '*.*' -c 'make bake -e BAKE_OPTIONS=$(BAKE_OPTIONS)' -W -R -D \{{cookiecutter.project_slug}}/
replay: BAKE_OPTIONS=--replay
replay: watch
;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化