Files
pyinstaller/doc/source/Makefile
T
giovannibajo 80e944a58c Rework makefile to add support for PDF generation
git-svn-id: http://svn.pyinstaller.org/trunk@70 8dd32b29-ccff-0310-8a9a-9233e24343b1
2005-09-15 13:50:05 +00:00

31 lines
515 B
Makefile

#
# Generate PyInstaller documentation
#
.PHONY: doc pdf
all: doc
doc: ../Tutorial.html
pdf: ../Tutorial.pdf
../Tutorial.html: Tutorial.rst
tools/buildrecursive.py --local --strict --title="PyInstaller Tutorial" --outpath=..
Tutorial.tex: Tutorial.rst
tools/rst2newlatex.py --stylesheet-path=stylesheets/latex.tex Tutorial.rst Tutorial.tex
../Tutorial.pdf: Tutorial.tex
pdflatex -output-directory=.. Tutorial.tex
clean:
rm -f ../*.html
rm -f ../*.pdf
rm -f ../*.aux
rm -f ../*.out
#
# END OF FILE
#