diff options
author | Fred Drake <fdrake@acm.org> | 1996-10-09 19:33:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1996-10-09 19:33:17 (GMT) |
commit | 5f2aa7113da2f59dd59616a6603784ad2a05f47a (patch) | |
tree | 625d8d53b310dd440ac49c3125cee4b393d7aeaf /Doc | |
parent | 0282726643762ff5aab84aa76e7803fab9f09569 (diff) | |
download | cpython-5f2aa7113da2f59dd59616a6603784ad2a05f47a.zip cpython-5f2aa7113da2f59dd59616a6603784ad2a05f47a.tar.gz cpython-5f2aa7113da2f59dd59616a6603784ad2a05f47a.tar.bz2 |
(Makefile): Push texi2html.py options into a make variable.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index c0556bd..a09b1bf 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -59,6 +59,7 @@ L2HARGS= -address $$USER@`domainname` -dont_include myformat # Destination directory for output of libwww target. PARTPARSE= $(PYTHON) ./partparse.pyc +TEXI2HTMLFLAGS= -d TEXI2HTML= $(PYTHON) ./texi2html.pyc LIBHTMLDIR= ./python-lib @@ -187,7 +188,7 @@ lib.info: python-lib.info libwww: lib.texi texi2html.pyc if test ! -d $(LIBHTMLDIR); then mkdir $(LIBHTMLDIR); else true; fi - $(TEXI2HTML) -d lib.texi $(LIBHTMLDIR) + $(TEXI2HTML) $(TEXI2HTMLFLAGS) lib.texi $(LIBHTMLDIR) # Targets to convert the manuals to HTML using Nikos Drakos' LaTeX to # HTML converter. For more info on this program, see |