1991-01-25 14:29:04 +01:00
|
|
|
# Makefile for Python documentation.
|
1991-11-12 16:39:56 +01:00
|
|
|
# Actually, it is easier to just do:
|
|
|
|
# latex tut
|
|
|
|
# latex tut
|
|
|
|
# latex lib
|
|
|
|
# latex lib
|
1991-11-21 14:54:36 +01:00
|
|
|
# latex ref
|
|
|
|
# latex ref
|
1991-11-12 16:39:56 +01:00
|
|
|
# (Doing everything twice so the table of contents comes out right!)
|
1991-01-25 14:29:04 +01:00
|
|
|
|
1991-01-22 12:47:14 +01:00
|
|
|
LATEX= latex
|
|
|
|
DVIPS= dvips
|
1991-01-25 14:29:04 +01:00
|
|
|
TEXPREVIEW= xdvi
|
1991-01-22 12:47:14 +01:00
|
|
|
|
|
|
|
PRINT= lpr
|
|
|
|
|
1991-11-21 14:54:36 +01:00
|
|
|
ALL= tut.ps lib.ps ref.ps
|
|
|
|
|
|
|
|
all: $(ALL)
|
|
|
|
|
1991-01-22 12:47:14 +01:00
|
|
|
tut: tut.dvi
|
|
|
|
$(TEXPREVIEW) tut
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1991-01-25 14:29:04 +01:00
|
|
|
tut.dvi tut.ps: tut.toc tut.tex myformat.sty
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1991-11-12 16:39:56 +01:00
|
|
|
lib: lib.dvi
|
|
|
|
$(TEXPREVIEW) lib
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1991-11-12 16:39:56 +01:00
|
|
|
lib.dvi lib.ps: lib.toc lib.tex lib1.tex lib2.tex lib3.tex myformat.sty
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1991-11-21 14:54:36 +01:00
|
|
|
ref: ref.dvi
|
|
|
|
$(TEXPREVIEW) ref
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1991-11-21 14:54:36 +01:00
|
|
|
ref.dvi ref.ps: ref.toc ref.tex myformat.sty
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1991-01-22 12:47:14 +01:00
|
|
|
print: $(ALL)
|
|
|
|
$(PRINT) $(ALL)
|
|
|
|
|
1990-08-09 16:25:15 +02:00
|
|
|
clean:
|
1991-02-19 13:52:33 +01:00
|
|
|
rm -f *.dvi *.aux *.toc *.log *.ps core [#@,]* *~
|
1990-08-09 16:25:15 +02:00
|
|
|
|
1990-10-07 13:35:21 +01:00
|
|
|
.SUFFIXES: # Remove default suffixes
|
|
|
|
|
1991-01-25 14:29:04 +01:00
|
|
|
.SUFFIXES: .tex .aux .toc .dvi .ps
|
1991-01-22 12:47:14 +01:00
|
|
|
|
|
|
|
.tex.aux:
|
|
|
|
$(LATEX) $*
|
|
|
|
|
|
|
|
.tex.toc:
|
|
|
|
$(LATEX) $*
|
|
|
|
|
|
|
|
.tex.dvi:
|
|
|
|
$(LATEX) $*
|
|
|
|
|
|
|
|
.dvi.ps:
|
|
|
|
$(DVIPS) $* >$*.ps
|
|
|
|
|
|
|
|
.tex.ps:
|
|
|
|
$(LATEX) $*
|
|
|
|
$(DVIPS) $* >$*.ps
|