summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authoraric <none@none>2006-09-29 14:48:20 +0000
committeraric <none@none>2006-09-29 14:48:20 +0000
commit333ae79ad298aafa2cf47c40638bfff9dabbb103 (patch)
tree6dc38bf0512b98f8fb6df7cf3276d45ce7e4abad /doc/Makefile
parent3a2beb8cb271b0bebc336c67cfba9a659da73f01 (diff)
downloadnetworkx-333ae79ad298aafa2cf47c40638bfff9dabbb103.tar.gz
Update readme, news, etc for release networkx-0.32
new doc builder: make_html.py, remove Makefile --HG-- extra : convert_revision : svn%3A3ed01bd8-26fb-0310-9e4c-ca1a4053419f/networkx/trunk%40414
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile80
1 files changed, 0 insertions, 80 deletions
diff --git a/doc/Makefile b/doc/Makefile
deleted file mode 100644
index 84065e1f..00000000
--- a/doc/Makefile
+++ /dev/null
@@ -1,80 +0,0 @@
-
-VPATH=html
-
-.SUFFIXES: .txt .html
-
-.txt.html:
- rst2html.py --link-stylesheet --stylesheet=nx_doc.css < $< > html/$*.html
-# rst2html.py < $< > html/$*.html
-
-.txt.tex:
- rst2latex.py --output-encoding-error-handler=backslashreplace < $< > pdf/$*.tex
- (cd pdf; pdflatex $*.tex)
-
-all: html pdf
-
-html: directory htmldoc htmlreference
-
-htmldoc: Readme.html Legal.html Tutorial.html Quick_ref.html Examples.html Drawing.html Credits.html News.html
- cp -f data/nx_doc.css html
- cp -f data/pydot-quote.patch html
- cp -f data/default.css html/nx_doc.css
- cp -f data/basic-s.png html
- cp -f data/as.png html
- cp -f data/art.png html
- cp -f data/tetrahedral-s.png html
- (cd html; ln -sf Readme.html index.html)
-
-pdf: pdfdoc pdfreference
-
-pdfdoc: directory
- VPATH=pdf
- cp -f data/basic-s.png pdf
- cp -f data/as.png pdf
- cp -f data/art.png pdf
- cp -f data/tetrahedral-s.png pdf
- $(MAKE) pdfdocreal
- /bin/rm pdf/*.aux pdf/*.log pdf/*.out pdf/*.tex
-
-pdfdocreal: Readme.tex Legal.tex Tutorial.tex Examples.tex Quick_ref.tex Drawing.tex Credits.tex News.tex
-
-htmlreference: FORCE
- (cd ../;epydoc -o ./doc/html/Reference/ --docformat restructuredtext --css doc/data/blue_restructured.css --no-private -v --inheritance listed networkx)
-
-pdfreference: FORCE
- (cd ../;epydoc --pdf -o ./doc/pdf/Reference/ --docformat restructuredtext -v --inheritance listed networkx)
- mv pdf/Reference/api.pdf pdf/networkx_api.pdf
- /bin/rm -r pdf/Reference
-
-directory:
- mkdir -p html
- mkdir -p pdf
-
-
-Drawing.html: Menu.txt
-
-Credits.html: Menu.txt
-
-Readme.html: Menu.txt
-
-Legal.html: Menu.txt
-
-Tutorial.html: Menu.txt
-
-Examples.html: Menu.txt
-
-Quick_ref.html: Menu.txt
-
-Drawing.html: Menu.txt
-
-News.html: Menu.txt
-
-test:
- ./test.py *.txt
-
-FORCE:
-
-clean:
- /bin/rm -rf html
- /bin/rm -rf pdf
- /bin/rm tetrahedral.*