diff options
author | Guido van Rossum <guido@python.org> | 1992-03-06 10:56:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-03-06 10:56:42 (GMT) |
commit | b83241c0bd65bd4a7b129b8401550a2c44bb8d7e (patch) | |
tree | c459bd3109390c152a7ef98c990f9ef5e90d6078 /Doc/Makefile | |
parent | b75d8cea54090015245045867ecd52ea6f9abc0e (diff) | |
download | cpython-b83241c0bd65bd4a7b129b8401550a2c44bb8d7e.zip cpython-b83241c0bd65bd4a7b129b8401550a2c44bb8d7e.tar.gz cpython-b83241c0bd65bd4a7b129b8401550a2c44bb8d7e.tar.bz2 |
Much simpler version, intended as a script.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 83 |
1 files changed, 25 insertions, 58 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index e209e47..4e42c5c 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -1,60 +1,27 @@ -# Makefile for Python documentation. -# Actually, it is easier to just do: -# latex tut -# latex tut -# latex lib -# latex lib -# latex ref -# latex ref -# (Doing everything twice so the table of contents comes out right!) - -LATEX= latex -DVIPS= dvips -TEXPREVIEW= xdvi - -PRINT= lpr - -ALL= tut.ps lib.ps ref.ps - -all: $(ALL) - -tut: tut.dvi - $(TEXPREVIEW) tut - -tut.dvi tut.ps: tut.toc tut.tex myformat.sty - -lib: lib.dvi - $(TEXPREVIEW) lib - -lib.dvi lib.ps: lib.toc lib.tex lib1.tex lib2.tex lib3.tex myformat.sty - -ref: ref.dvi - $(TEXPREVIEW) ref - -ref.dvi ref.ps: ref.toc ref.tex myformat.sty - -print: $(ALL) - $(PRINT) $(ALL) +all: tut ref lib # qua + +tut: + latex tut + latex tut + +ref: + touch ref.ind + latex ref + makeindex ref + latex ref + +lib: + touch lib.ind + latex lib + makeindex lib + latex lib + +qua: + latex qua + latex qua + bibtex qua + latex qua clean: - rm -f *.dvi *.aux *.toc *.log *.ps core [#@,]* *~ - -.SUFFIXES: # Remove default suffixes - -.SUFFIXES: .tex .aux .toc .dvi .ps - -.tex.aux: - $(LATEX) $* - -.tex.toc: - $(LATEX) $* - -.tex.dvi: - $(LATEX) $* - -.dvi.ps: - $(DVIPS) $* >$*.ps - -.tex.ps: - $(LATEX) $* - $(DVIPS) $* >$*.ps + rm -f *~ *.aux *.dvi *.idx *.ilg *.ind *.log *.ps *.toc + # Keep: .tex, .bib, .sty! |