From 6f9e0b4a301f5da5c6892b489e5bbcc564a5a408 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Thu, 11 Apr 2013 23:46:49 +0000 Subject: [PATCH] Update top-level Makefile with new directory structure. --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 5792a18..3baf56f 100644 --- a/Makefile +++ b/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