mirror of
https://github.com/python/cpython.git
synced 2024-11-25 19:03:49 +08:00
Much simpler version, intended as a script.
This commit is contained in:
parent
b75d8cea54
commit
b83241c0bd
75
Doc/Makefile
75
Doc/Makefile
@ -1,60 +1,27 @@
|
|||||||
# Makefile for Python documentation.
|
all: tut ref lib # qua
|
||||||
# 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
|
tut:
|
||||||
DVIPS= dvips
|
latex tut
|
||||||
TEXPREVIEW= xdvi
|
latex tut
|
||||||
|
|
||||||
PRINT= lpr
|
ref:
|
||||||
|
touch ref.ind
|
||||||
|
latex ref
|
||||||
|
makeindex ref
|
||||||
|
latex ref
|
||||||
|
|
||||||
ALL= tut.ps lib.ps ref.ps
|
lib:
|
||||||
|
touch lib.ind
|
||||||
|
latex lib
|
||||||
|
makeindex lib
|
||||||
|
latex lib
|
||||||
|
|
||||||
all: $(ALL)
|
qua:
|
||||||
|
latex qua
|
||||||
tut: tut.dvi
|
latex qua
|
||||||
$(TEXPREVIEW) tut
|
bibtex qua
|
||||||
|
latex qua
|
||||||
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)
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.dvi *.aux *.toc *.log *.ps core [#@,]* *~
|
rm -f *~ *.aux *.dvi *.idx *.ilg *.ind *.log *.ps *.toc
|
||||||
|
# Keep: .tex, .bib, .sty!
|
||||||
.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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user