1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/staugur-Flask-PluginKit

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
Makefile 1.4 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Mr.tao Отправлено 06.08.2019 05:52 708d8f0
.PHONY: clean
help:
@echo " clean remove unwanted stuff"
@echo " dev make a development package"
@echo " test run the tests"
@echo " publish-test package and upload a release to test.pypi.org"
@echo " publish-release package and upload a release to pypi.org"
@echo " html use the sphinx-build based on reST build HTML file"
@echo " gettext make gettext"
@echo " cn sphinx-intl update pot for zh_CN"
@echo " html-cn generate the zh_CN translation document"
@echo " pipe make html with en and cn, then clean"
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '.DS_Store' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
find . -name '.coverage' -exec rm -rf {} +
rm -rf build dist .eggs *.egg-info +
dev:
pip install .
$(MAKE) clean
test:
python setup.py test
$(MAKE) clean
publish-test:
python setup.py publish --test
publish-release:
python setup.py publish --release
html:
cd docs && sphinx-build -E -T -b html . _build/html
gettext:
cd docs && sphinx-build -b gettext . _build/gettext
cn:
cd docs && sphinx-intl update -p _build/gettext -l zh_CN
html-cn:
cd docs && sphinx-build -E -T -D language=zh_CN -b html . _build/html_cn
pipe:
$(MAKE) html
$(MAKE) gettext
$(MAKE) cn
$(MAKE) html-cn
$(MAKE) clean

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/staugur-Flask-PluginKit.git
git@api.gitlife.ru:oschina-mirror/staugur-Flask-PluginKit.git
oschina-mirror
staugur-Flask-PluginKit
staugur-Flask-PluginKit
master