Update top-level Makefile with new directory structure.

feature/documentation-builds-html
Isis Lovecruft 2013-04-11 23:46:49 +00:00
parent d97ae0b356
commit 6f9e0b4a30
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 8 additions and 7 deletions

View File

@ -5,22 +5,23 @@ clean:
rm -f ./*.pyo
cleantest: clean
mkdir -p keys
touch placeholder.log
rm -rf keys
rm *.log
mkdir -p gnupg/tests/keys
touch gnupg/tests/placeholder.log
rm -rf gnupg/tests/keys
rm gnupg/tests/*.log
test: cleantest
python test_gnupg.py basic
test: cleantest
python gnupg/tests/test_gnupg.py basic
install:
python setup.py install --record installed-files.txt
uninstall:
touch installed-files.txt
cat installed-files.txt | sudo xargs rm -rf
clean-docs:
sphinx-apidoc -o docs -F -A "Isis Agora Lovecruft" -H "python-gnupg" -V 0.3.1 -R 0.3.1 .
sphinx-apidoc -F -A "Isis Agora Lovecruft" -H "python-gnupg" -V 0.4.0 -R 0.4.0 -o docs gnupg/ tests/
docs:
cd docs