diff options
author | Guido van Rossum <guido@python.org> | 1991-11-12 15:39:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-11-12 15:39:56 (GMT) |
commit | 59e9070148f5dbc61187ccab08fd08e2666f1cb4 (patch) | |
tree | b3e220015beb9a75049dd69c04cc48026ab0480b | |
parent | eee9498b71a10381e5017201ed9d2fcb547d4305 (diff) | |
download | cpython-59e9070148f5dbc61187ccab08fd08e2666f1cb4.zip cpython-59e9070148f5dbc61187ccab08fd08e2666f1cb4.tar.gz cpython-59e9070148f5dbc61187ccab08fd08e2666f1cb4.tar.bz2 |
Renamed mod to lib.
-rw-r--r-- | Doc/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index b2cf688..31834d5 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -1,4 +1,10 @@ # Makefile for Python documentation. +# Actually, it is easier to just do: +# latex tut +# latex tut +# latex lib +# latex lib +# (Doing everything twice so the table of contents comes out right!) LATEX= latex DVIPS= dvips @@ -11,12 +17,12 @@ tut: tut.dvi tut.dvi tut.ps: tut.toc tut.tex myformat.sty -mod: mod.dvi - $(TEXPREVIEW) mod +lib: lib.dvi + $(TEXPREVIEW) lib -mod.dvi mod.ps: mod.toc mod.tex mod1.tex mod2.tex mod3.tex myformat.sty +lib.dvi lib.ps: lib.toc lib.tex lib1.tex lib2.tex lib3.tex myformat.sty -ALL= tut.ps mod.ps +ALL= tut.ps lib.ps all: $(ALL) |