Commit 5f2aa711 authored by Fred Drake's avatar Fred Drake

(Makefile): Push texi2html.py options into a make variable.

parent 02827266
...@@ -59,6 +59,7 @@ L2HARGS= -address $$USER@`domainname` -dont_include myformat ...@@ -59,6 +59,7 @@ L2HARGS= -address $$USER@`domainname` -dont_include myformat
# Destination directory for output of libwww target. # Destination directory for output of libwww target.
PARTPARSE= $(PYTHON) ./partparse.pyc PARTPARSE= $(PYTHON) ./partparse.pyc
TEXI2HTMLFLAGS= -d
TEXI2HTML= $(PYTHON) ./texi2html.pyc TEXI2HTML= $(PYTHON) ./texi2html.pyc
LIBHTMLDIR= ./python-lib LIBHTMLDIR= ./python-lib
...@@ -187,7 +188,7 @@ lib.info: python-lib.info ...@@ -187,7 +188,7 @@ lib.info: python-lib.info
libwww: lib.texi texi2html.pyc libwww: lib.texi texi2html.pyc
if test ! -d $(LIBHTMLDIR); then mkdir $(LIBHTMLDIR); else true; fi 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 # Targets to convert the manuals to HTML using Nikos Drakos' LaTeX to
# HTML converter. For more info on this program, see # HTML converter. For more info on this program, see
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment