Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: d29eb6232cf7d71e5f5bffd70668b3e18835797a authored by cvs2svn on 29 July 1993, 13:14:32 UTC
This commit was manufactured by cvs2svn to create tag 'release099'.
Tip revision: d29eb62
Makefile
DESTDIR=/usr/local
LIBDESTDIR=$DESTDIR/lib
LIBDEST=$LIBDESTDIR/python
DOCDESTDIR=$LIBDEST/doc

all:	tut ref lib 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

qua:
	latex qua
	bibtex qua
	latex qua
	latex qua
	dvips qua >qua.ps

libinfo:
	@echo This may take a while...
	python -c 'import partparse; partparse.main()' lib[1-5].tex
	sh fix.sh

# This target is very local to CWI...  (first make libinfo)
libwww:
	texi2html -d @out.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

clobber: clean
	 rm -f *.dvi *.ps *.info *.info-[0-9]*
back to top