diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-09 22:18:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-09 22:18:42 (GMT) |
commit | 4be00713b8a6711110e9f6292882553e81e8060d (patch) | |
tree | b1ef624bde388cb943ccf75dc670bad7c14e678e /Doc/Makefile | |
parent | dd244a0b9eeef2d0d8f6a3375eee4b5f88067ac4 (diff) | |
download | cpython-4be00713b8a6711110e9f6292882553e81e8060d.zip cpython-4be00713b8a6711110e9f6292882553e81e8060d.tar.gz cpython-4be00713b8a6711110e9f6292882553e81e8060d.tar.bz2 |
Include indfix.py script in lib.dvi's processing.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 9651db4..cc20439 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -133,13 +133,14 @@ LIBFILES = lib.tex \ liblocale.tex libbasehttp.tex libcopyreg.tex # Library document -lib.dvi: modindex.py $(LIBFILES) +lib.dvi: modindex.py indfix.py $(LIBFILES) touch lib.ind touch modules.ind $(LATEX) lib ./modindex.py modules.idx ./fix_hack lib.idx $(MAKEINDEX) lib.idx + ./indfix.py lib.ind ./modindex.py modules.idx $(LATEX) lib |