Fix an amazing number of typos & malformed sentences reported by Detlef
[python/dscho.git] / Demo / parser / Makefile
blob0d02215c3c4acc14e9e73c3fa69d312e3ef23530
1 parser.dvi: parser.tex ../../Doc/libparser.tex
2 TEXINPUTS=../../Doc:: $(LATEX) parser
4 parser.ps: parser.dvi
5 $(DVIPS) parser >parser.ps
7 parser.texi: @lib.texi
8 $(EMACS) -batch -l ../../Doc/fix.el -f save-buffer -kill
9 mv @lib.texi parser.texi
11 @lib.texi:../../Doc/libparser.tex \
12 texipre.dat ../../Doc/texipost.dat \
13 ../../Doc/partparse.py ../../Doc/fix.el
14 $(PYTHON) ../../Doc/partparse.py -o @lib.texi \
15 -t ../../Doc/texipost.dat \
16 ../../Doc/libparser.tex
18 parserwww: parser.texi
19 if test -d html ; then true; else mkdir html ; fi
20 $(PYTHON) ../../Doc/texi2html.py -d parser.texi html
22 # Use a new name for this; the included file uses 'clean' already....
23 clean-parser:
24 rm -f *.log *.aux *.dvi *.pyc *.ps
26 dist:
27 (cd ../..; \
28 tar cf - `cat Demo/parser/FILES` | gzip >parsermodule-1.4.tar.gz)
30 include ../../Doc/Makefile