From 0ec9c51418c180ee7a97bec64d71cad1f0fa080d Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Tue, 1 Oct 2013 01:29:09 +0200 Subject: [PATCH] added title to docs in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8d023c2..1026145 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,10 @@ clean: find . -type f -name "*.pyc" -exec rm -f {} \; docs: - epydoc --html -o docs . + epydoc -n "Linspector Monitoring - API Documentation" --html -o docs . docs-pdf: - epydoc --pdf -o docs . + epydoc -n "Linspector Monitoring - API Documentation" --pdf -o docs . docs-clean: rm -rf docs