]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Renamed intro and modules to tut and mod; added tbl to pipeline.
authorGuido van Rossum <guido@python.org>
Tue, 18 Sep 1990 10:47:40 +0000 (10:47 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 18 Sep 1990 10:47:40 +0000 (10:47 +0000)
Doc/Makefile

index 0ccb7dea13e4ff69d1abd3d1d7608c5e0450b036..6691690fe9ca3b67e2904c01fa641206dea05ba2 100644 (file)
@@ -1,12 +1,14 @@
+TBL=           tbl
 TROFF=         ditroff
 MS=            -ms
-PREVIEW=       dpv
+FUNNYTAB=      $$HOME/lib/funnytab
+PREVIEW=       dpv -f $(FUNNYTAB)
 
-intro:         intro.dit
-               $(PREVIEW) intro.dit
+tut:           tut.dit
+               $(PREVIEW) tut.dit
 
-modules:       modules.dit
-               $(PREVIEW) modules.dit
+mod:           mod.dit
+               $(PREVIEW) mod.dit
 
 paper:         paper.dit
                $(PREVIEW) paper.dit
@@ -14,7 +16,7 @@ paper:                paper.dit
 ref:           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)
 
@@ -26,4 +28,4 @@ clean:
 .SUFFIXES:     .ms .dit
 
 .ms.dit:
-               $(TROFF) $(MS) $*.ms >$@
+               $(TBL) $*.ms | $(TROFF) $(MS) >$@