Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/docs/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2008-05-26 09:28:41 (GMT)
committer Jonas Smedegaard <dr@jones.dk>2008-05-26 09:28:41 (GMT)
commite8392ac394cf8014df7dd876ecc7a9eabd1ba0d3 (patch)
treea241429cca4858a9045f39ef9dfb914ece5e24e2 /docs/Makefile
parent005ceef563bce78ec18743144ed8b54dcb5a93c2 (diff)
parenta7cc7f9ce160a7d657f6c237c4e5bacc7f4abbd3 (diff)
Merge branch 'upstream'
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/docs/Makefile b/docs/Makefile
deleted file mode 100644
index d0b6ed4..0000000
--- a/docs/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-######################################################################
-## Different doc packages need different things. Some have to
-## import the source, others just need to parse it. The hacks in
-## this file attempt to make this happen for some of the common doc
-## systems.
-######################################################################
-export PYTHON=python
-export PRODUCT_DIR=${CURDIR}/../
-export PYTHONPATH=`${PYTHON} ./getbuildpath.py`
-
-# If you have epydoc installed feel free
-#DOC_TARGETS += epydoc_pdf
-DOC_TARGETS += pydoc
-
-all: doc
-
-epydoc_html:
- @epydoc -qq --html -o ${PRODUCT_DIR}/docs ${PYTHONPATH}/${PROJECTNAME}
-
-epydoc_pdf:
- @epydoc -qq --pdf -o ${PRODUCT_DIR}/docs ${PYTHONPATH}/${PROJECTNAME}
-
-pydoc:
- @${PYTHON} ./writedocs.py ${PRODUCT_DIR}
-
-
-doc: ${DOC_TARGETS}
-
-clean:
- @find . -name "*.pyc" -exec rm {} \;
- @find . -name "*~" -exec rm {} \;
- @find . -name "${PROJECTNAME}*.html" -exec rm {} \;
- @rm -rf index.html epydoc.css public private
- @rm -rf api.* *.aux *.tex
-
-
-