Update top-level Makefile with new directory structure.
parent
d97ae0b356
commit
6f9e0b4a30
15
Makefile
15
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue