diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-16 17:06:10 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-16 17:06:10 (GMT) |
commit | 3b26eeddea3bdcbb2411bc2cf5577cf50f5bb600 (patch) | |
tree | a550b3eacc0ddc20b52e973faba6e16b999a4ec9 | |
parent | 35685240a91dbb3e4fb0e0b343019ba586e531c2 (diff) | |
download | cpython-3b26eeddea3bdcbb2411bc2cf5577cf50f5bb600.zip cpython-3b26eeddea3bdcbb2411bc2cf5577cf50f5bb600.tar.gz cpython-3b26eeddea3bdcbb2411bc2cf5577cf50f5bb600.tar.bz2 |
Added rule to generate the PDF format using pdflatex. Commented out since
this is still experimental software. See the comment.
-rw-r--r-- | Doc/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 9a27a53..a67d07a 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -47,6 +47,7 @@ # Where are the various programs? LATEX= latex +PDFLATEX= pdflatex BIBTEX= bibtex DVIPS= dvips -f -N0 DISTILL= distill @@ -97,6 +98,17 @@ api: api.ps .ps.pdf: $(DISTILL) $< +# An alternate formulation of PDF creation; requires latex format with +# pdftex. To use this instead of the Acrobat distiller solution, comment +# out the above .ps.pdf rule and uncomment this rule. This was tested +# using a pre-release of the teTeX distribution. See +# http://www.tug.org/tetex/ for more information on getting & using teTeX. +# This rule avoids creation of the intermediate PostScript files and uses +# only free software. +# +#.dvi.pdf: +# $(PDFLATEX) $* + # Dependencies COMMONTEX=myformat.sty copyright.tex boilerplate.tex |