summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-08-09 14:25:15 (GMT)
committerGuido van Rossum <guido@python.org>1990-08-09 14:25:15 (GMT)
commit7f777ed95a19224294949e1b4ce56bbffcb1fe9f (patch)
tree52384aa82c1f7785424544fc3ee003729b07ac12 /Doc/Makefile
downloadcpython-7f777ed95a19224294949e1b4ce56bbffcb1fe9f.zip
cpython-7f777ed95a19224294949e1b4ce56bbffcb1fe9f.tar.gz
cpython-7f777ed95a19224294949e1b4ce56bbffcb1fe9f.tar.bz2
Initial revision
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
new file mode 100644
index 0000000..0ccb7de
--- /dev/null
+++ b/Doc/Makefile
@@ -0,0 +1,29 @@
+TROFF= ditroff
+MS= -ms
+PREVIEW= dpv
+
+intro: intro.dit
+ $(PREVIEW) intro.dit
+
+modules: modules.dit
+ $(PREVIEW) modules.dit
+
+paper: paper.dit
+ $(PREVIEW) paper.dit
+
+ref: ref.dit
+ $(PREVIEW) ref.dit
+
+ALL= intro.dit modules.dit paper.dit ref.dit
+
+all: $(ALL)
+
+$(ALL): macros.ms
+
+clean:
+ rm -f $(ALL)
+
+.SUFFIXES: .ms .dit
+
+.ms.dit:
+ $(TROFF) $(MS) $*.ms >$@