mirror of
https://github.com/python/cpython.git
synced 2024-12-15 21:04:00 +08:00
3cbc16d904
sys.tracebacklimit. * tut.tex (Exceptions): change text printed by traceback. * lib5.tex (audioop): added minmax. * lib5.tex (audioop.getsample): move wandered paragraph back * lib3.tex, partparse.py: undo mucking with \nopagebreak (didn't work). * partparse.py: ignore \nopagebreak command * ref5.tex: added description of lambda forms. * ref7.tex: added reference to lambda forms to section on function definition. * lib1.tex: removed lambda as built-in function (it is now a special form). Also removed feature of filter, map, reduce to turn a string argument into an anonymous function.
69 lines
1.2 KiB
Makefile
69 lines
1.2 KiB
Makefile
DESTDIR=/usr/local
|
|
LIBDESTDIR=$DESTDIR/lib
|
|
LIBDEST=$LIBDESTDIR/python
|
|
DOCDESTDIR=$LIBDEST/doc
|
|
|
|
all: tut lib ref ext qua
|
|
|
|
tut:
|
|
latex tut
|
|
latex tut
|
|
dvips tut >tut.ps
|
|
|
|
ref:
|
|
touch ref.ind
|
|
latex ref
|
|
./fix_hack ref.idx
|
|
makeindex ref
|
|
latex ref
|
|
dvips ref >ref.ps
|
|
|
|
lib:
|
|
touch lib.ind
|
|
latex lib
|
|
./fix_hack lib.idx
|
|
makeindex lib
|
|
latex lib
|
|
dvips lib >lib.ps
|
|
|
|
ext:
|
|
touch ext.ind
|
|
latex ext
|
|
./fix_hack ext.idx
|
|
makeindex ext
|
|
latex ext
|
|
dvips ext >ext.ps
|
|
|
|
qua:
|
|
latex qua
|
|
bibtex qua
|
|
latex qua
|
|
latex qua
|
|
dvips qua >qua.ps
|
|
|
|
lib.texi: lib1.tex lib2.tex lib3.tex lib4.tex lib5.tex \
|
|
texipre.dat texipost.dat partparse.py
|
|
python partparse.py -o @lib.texi lib[1-5].tex
|
|
mv @lib.texi lib.texi
|
|
|
|
.PRECIOUS: lib.texi
|
|
|
|
python-lib.info: lib.texi fix.el
|
|
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
|
|
|
|
# This target is very local to CWI...
|
|
libwww: lib.texi
|
|
texi2html -d lib.texi /usr/local/ftp.cwi.nl/pub/www/texinfo/python
|
|
|
|
clean:
|
|
rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.pyc
|
|
# Sources: .tex, .bib, .sty
|
|
# Useful results: .dvi, .ps, .texi, .info
|
|
|
|
clobber: clean
|
|
rm -f *.dvi *.ps *.texi *.info *.info-[0-9]*
|