From 7d22ddeabc20e87b2ed6e55d6932422a9e1f2949 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Fri, 5 Apr 2013 23:12:53 +0000 Subject: [PATCH] Add uninstall command to top-level Makefile. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de9b6b7..ab43041 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,10 @@ test: cleantest python test_gnupg.py basic install: - python setup.py install + python setup.py install --record installed-files.txt + +uninstall: + 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 .