mirror of https://github.com/python/cpython.git
Renamed intro and modules to tut and mod; added tbl to pipeline.
This commit is contained in:
parent
3310257195
commit
b829a0935b
16
Doc/Makefile
16
Doc/Makefile
|
@ -1,12 +1,14 @@
|
||||||
|
TBL= tbl
|
||||||
TROFF= ditroff
|
TROFF= ditroff
|
||||||
MS= -ms
|
MS= -ms
|
||||||
PREVIEW= dpv
|
FUNNYTAB= $$HOME/lib/funnytab
|
||||||
|
PREVIEW= dpv -f $(FUNNYTAB)
|
||||||
|
|
||||||
intro: intro.dit
|
tut: tut.dit
|
||||||
$(PREVIEW) intro.dit
|
$(PREVIEW) tut.dit
|
||||||
|
|
||||||
modules: modules.dit
|
mod: mod.dit
|
||||||
$(PREVIEW) modules.dit
|
$(PREVIEW) mod.dit
|
||||||
|
|
||||||
paper: paper.dit
|
paper: paper.dit
|
||||||
$(PREVIEW) paper.dit
|
$(PREVIEW) paper.dit
|
||||||
|
@ -14,7 +16,7 @@ paper: paper.dit
|
||||||
ref: ref.dit
|
ref: ref.dit
|
||||||
$(PREVIEW) ref.dit
|
$(PREVIEW) ref.dit
|
||||||
|
|
||||||
ALL= intro.dit modules.dit paper.dit ref.dit
|
ALL= tut.dit mod.dit paper.dit ref.dit
|
||||||
|
|
||||||
all: $(ALL)
|
all: $(ALL)
|
||||||
|
|
||||||
|
@ -26,4 +28,4 @@ clean:
|
||||||
.SUFFIXES: .ms .dit
|
.SUFFIXES: .ms .dit
|
||||||
|
|
||||||
.ms.dit:
|
.ms.dit:
|
||||||
$(TROFF) $(MS) $*.ms >$@
|
$(TBL) $*.ms | $(TROFF) $(MS) >$@
|
||||||
|
|
Loading…
Reference in New Issue