1992-07-07 06:06:34 -03:00
|
|
|
DESTDIR=/usr/local
|
|
|
|
LIBDESTDIR=$DESTDIR/lib
|
|
|
|
LIBDEST=$LIBDESTDIR/python
|
|
|
|
DOCDESTDIR=$LIBDEST/doc
|
|
|
|
|
1993-11-19 09:13:22 -04:00
|
|
|
all: tut lib ref ext qua
|
1992-03-06 06:56:42 -04:00
|
|
|
|
|
|
|
tut:
|
|
|
|
latex tut
|
|
|
|
latex tut
|
1992-07-07 06:06:34 -03:00
|
|
|
dvips tut >tut.ps
|
1992-03-06 06:56:42 -04:00
|
|
|
|
|
|
|
ref:
|
|
|
|
touch ref.ind
|
|
|
|
latex ref
|
1992-12-17 11:31:02 -04:00
|
|
|
./fix_hack ref.idx
|
1992-03-06 06:56:42 -04:00
|
|
|
makeindex ref
|
|
|
|
latex ref
|
1992-07-07 06:06:34 -03:00
|
|
|
dvips ref >ref.ps
|
1992-03-06 06:56:42 -04:00
|
|
|
|
|
|
|
lib:
|
|
|
|
touch lib.ind
|
|
|
|
latex lib
|
1992-12-08 10:37:55 -04:00
|
|
|
./fix_hack lib.idx
|
1992-03-06 06:56:42 -04:00
|
|
|
makeindex lib
|
|
|
|
latex lib
|
1992-07-07 06:06:34 -03:00
|
|
|
dvips lib >lib.ps
|
1992-03-06 06:56:42 -04:00
|
|
|
|
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile.
* text2latex.py: script to do part of the conversion from an plain ASCI
text file (in my particular style) to LaTeX.
(Chapter/section/subsection headers, and verbatim sections.)
* partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex ->
info conversion process (at least it works again, and with less
debugging output). Removed fix.sh.
* lib1.tex (section{Built-in Functions}): adapt description of str() and
repr() to new situation.
* lib3.tex (Module os): added exec*() variants.
* lib3.tex (Module posix): added execve().
* lib2.tex (Module array): documented reality; remove typecode and
itemsize, add byteswap, rename read/write to fromfile/tofile, and
re-alphabetized.
* lib1.tex (Built-in Functions): renamed bagof() to filter().
1993-11-05 10:45:11 -04:00
|
|
|
ext:
|
|
|
|
touch ext.ind
|
|
|
|
latex ext
|
|
|
|
./fix_hack ext.idx
|
|
|
|
makeindex ext
|
|
|
|
latex ext
|
|
|
|
dvips ext >ext.ps
|
|
|
|
|
1992-03-06 06:56:42 -04:00
|
|
|
qua:
|
|
|
|
latex qua
|
|
|
|
bibtex qua
|
|
|
|
latex qua
|
1992-06-03 14:59:20 -03:00
|
|
|
latex qua
|
1993-05-12 05:53:36 -03:00
|
|
|
dvips qua >qua.ps
|
1991-01-22 07:47:14 -04:00
|
|
|
|
1993-12-17 08:13:53 -04:00
|
|
|
lib.texi: lib1.tex lib2.tex lib3.tex lib4.tex lib5.tex \
|
|
|
|
texipre.dat texipost.dat partparse.py
|
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile.
* text2latex.py: script to do part of the conversion from an plain ASCI
text file (in my particular style) to LaTeX.
(Chapter/section/subsection headers, and verbatim sections.)
* partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex ->
info conversion process (at least it works again, and with less
debugging output). Removed fix.sh.
* lib1.tex (section{Built-in Functions}): adapt description of str() and
repr() to new situation.
* lib3.tex (Module os): added exec*() variants.
* lib3.tex (Module posix): added execve().
* lib2.tex (Module array): documented reality; remove typecode and
itemsize, add byteswap, rename read/write to fromfile/tofile, and
re-alphabetized.
* lib1.tex (Built-in Functions): renamed bagof() to filter().
1993-11-05 10:45:11 -04:00
|
|
|
python partparse.py -o @lib.texi lib[1-5].tex
|
|
|
|
mv @lib.texi lib.texi
|
|
|
|
|
|
|
|
.PRECIOUS: lib.texi
|
|
|
|
|
1993-12-17 08:13:53 -04:00
|
|
|
python-lib.info: lib.texi fix.el
|
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile.
* text2latex.py: script to do part of the conversion from an plain ASCI
text file (in my particular style) to LaTeX.
(Chapter/section/subsection headers, and verbatim sections.)
* partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex ->
info conversion process (at least it works again, and with less
debugging output). Removed fix.sh.
* lib1.tex (section{Built-in Functions}): adapt description of str() and
repr() to new situation.
* lib3.tex (Module os): added exec*() variants.
* lib3.tex (Module posix): added execve().
* lib2.tex (Module array): documented reality; remove typecode and
itemsize, add byteswap, rename read/write to fromfile/tofile, and
re-alphabetized.
* lib1.tex (Built-in Functions): renamed bagof() to filter().
1993-11-05 10:45:11 -04:00
|
|
|
emacs -batch -l fix.el -f save-buffer -kill
|
|
|
|
makeinfo +footnote-style end +fill-column 72 +paragraph-indent 0 \
|
|
|
|
lib.texi
|
|
|
|
|
|
|
|
lib.info: python-lib.info
|
1992-12-08 10:37:55 -04:00
|
|
|
|
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile.
* text2latex.py: script to do part of the conversion from an plain ASCI
text file (in my particular style) to LaTeX.
(Chapter/section/subsection headers, and verbatim sections.)
* partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex ->
info conversion process (at least it works again, and with less
debugging output). Removed fix.sh.
* lib1.tex (section{Built-in Functions}): adapt description of str() and
repr() to new situation.
* lib3.tex (Module os): added exec*() variants.
* lib3.tex (Module posix): added execve().
* lib2.tex (Module array): documented reality; remove typecode and
itemsize, add byteswap, rename read/write to fromfile/tofile, and
re-alphabetized.
* lib1.tex (Built-in Functions): renamed bagof() to filter().
1993-11-05 10:45:11 -04:00
|
|
|
# This target is very local to CWI...
|
|
|
|
libwww: lib.texi
|
|
|
|
texi2html -d lib.texi /usr/local/ftp.cwi.nl/pub/www/texinfo/python
|
1993-02-21 16:10:26 -04:00
|
|
|
|
1990-08-09 11:25:15 -03:00
|
|
|
clean:
|
1992-12-17 11:31:02 -04:00
|
|
|
rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.pyc
|
1992-07-07 06:06:34 -03:00
|
|
|
# Sources: .tex, .bib, .sty
|
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile.
* text2latex.py: script to do part of the conversion from an plain ASCI
text file (in my particular style) to LaTeX.
(Chapter/section/subsection headers, and verbatim sections.)
* partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex ->
info conversion process (at least it works again, and with less
debugging output). Removed fix.sh.
* lib1.tex (section{Built-in Functions}): adapt description of str() and
repr() to new situation.
* lib3.tex (Module os): added exec*() variants.
* lib3.tex (Module posix): added execve().
* lib2.tex (Module array): documented reality; remove typecode and
itemsize, add byteswap, rename read/write to fromfile/tofile, and
re-alphabetized.
* lib1.tex (Built-in Functions): renamed bagof() to filter().
1993-11-05 10:45:11 -04:00
|
|
|
# Useful results: .dvi, .ps, .texi, .info
|
1992-07-07 06:06:34 -03:00
|
|
|
|
|
|
|
clobber: clean
|
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile.
* text2latex.py: script to do part of the conversion from an plain ASCI
text file (in my particular style) to LaTeX.
(Chapter/section/subsection headers, and verbatim sections.)
* partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex ->
info conversion process (at least it works again, and with less
debugging output). Removed fix.sh.
* lib1.tex (section{Built-in Functions}): adapt description of str() and
repr() to new situation.
* lib3.tex (Module os): added exec*() variants.
* lib3.tex (Module posix): added execve().
* lib2.tex (Module array): documented reality; remove typecode and
itemsize, add byteswap, rename read/write to fromfile/tofile, and
re-alphabetized.
* lib1.tex (Built-in Functions): renamed bagof() to filter().
1993-11-05 10:45:11 -04:00
|
|
|
rm -f *.dvi *.ps *.texi *.info *.info-[0-9]*
|