From ae5dbe07742f02435b90875343020fd8f3981c55 Mon Sep 17 00:00:00 2001 From: Stephan Erb Date: Sun, 18 Oct 2009 19:38:32 +0200 Subject: [PATCH] Add 'make doc' and 'make test' directives. (requires you to re-run ./autogen.sh) --- Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile.am b/Makefile.am index 9140f24f9..019f7a1d9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -57,3 +57,12 @@ MAINTAINERCLEANDIRS = \ autom4te.cache \ build \ dist + + +test: + python test/runtests.py +.PHONY: test + +doc: + epydoc --config=doc/epydoc.conf +.PHONY: doc