vdirsyncer/Makefile
Markus Unterwaditzer 224daba414 Add release cmd
2015-05-29 19:16:45 +02:00

33 lines
601 B
Makefile

install-test:
sh build.sh install_tests
test:
sh build.sh tests
install-style:
pip install flake8 flake8-import-order sphinx
pip install -e .
style:
flake8
! grep -ri syncroniz */*
sphinx-build -W -b html ./docs/ ./docs/_build/html/
install-docs:
pip install sphinx sphinx_rtd_theme
pip install -e .
docs:
cd docs
make html
linkcheck:
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
install:
$(error Take a look at https://vdirsyncer.readthedocs.org/en/stable/tutorial.html#installation)
release:
python setup.py sdist bdist_wheel upload
.DEFAULT_GOAL := install