]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Initial revision
authorGuido van Rossum <guido@python.org>
Thu, 9 Aug 1990 14:25:15 +0000 (14:25 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 9 Aug 1990 14:25:15 +0000 (14:25 +0000)
Doc/Makefile [new file with mode: 0644]
Doc/README [new file with mode: 0644]

diff --git a/Doc/Makefile b/Doc/Makefile
new file mode 100644 (file)
index 0000000..0ccb7de
--- /dev/null
@@ -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 >$@
diff --git a/Doc/README b/Doc/README
new file mode 100644 (file)
index 0000000..d44e8a8
--- /dev/null
@@ -0,0 +1,25 @@
+This directory contains the source to the Python documentation.
+
+Unfortunately it's not not very readable, complete or up-to-date yet --
+in other words, I'm still working on it!
+
+There are four documents and a macro file:
+
+       macros.ms               macros .so'ed by the documents
+
+       paper.ms                conference paper about Python
+       intro.ms                informal introduction to Python
+       ref.ms                  Python language reference manual
+       modules.ms              description of standard modules
+
+XXX There should also be a man page.
+
+To typeset one of the documents on the default Postscript printer, chdir
+to this directory (otherwise the macros aren't found!) and issue the
+command
+
+       pstroff -ms file.ms
+
+When typesetting all documents, issue a separate command for each.
+
+--Guido (last modified 10 Sep 90)