vdirsyncer/Makefile
Markus Unterwaditzer a786fdf611 Add makefile
Hopefully I'll be able to move more and more stuff from build.sh to
standard build tools.
2015-01-11 16:57:55 +01:00

24 lines
312 B
Makefile

install:
make install-test
make install-style
install-test:
sh build.sh install_tests
test:
sh build.sh tests
install-style:
pip install flake8 flake8-import-order
style:
flake8
! grep -ri syncroniz */*
install-docs:
pip install sphinx sphinx_rtd_theme
pip install -e .
docs:
cd docs
make html