1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
context.html: context.tex context.hbbl
hevea -fix context.tex
context.hbbl: context.tex rewriting.bib
hevea context
bibhva context
ifeq ($(wildcard rewriting.bib.gz),rewriting.bib.gz)
rewriting.bib: rewriting.bib.gz
gunzip -c rewriting.bib.gz > rewriting.bib
endif
context.ps: context.dvi
dvips -o context.ps context.dvi
context.dvi: context.tex context.bbl
latex context
bibtex context
latex context
-(grep -q "Rerun" context.log && latex context)
-(grep -q "Rerun" context.log && latex context)
clean:
rm -f *.ps *.dvi *.html *.aux *.haux *log *.blg *.bbl *.hbbl
|