mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
80e944a58c
git-svn-id: http://svn.pyinstaller.org/trunk@70 8dd32b29-ccff-0310-8a9a-9233e24343b1
31 lines
515 B
Makefile
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
|
|
#
|