| Revision: | 3251 |
| Committed: | Wed Apr 2 16:58:30 2014 UTC (12 years, 3 months ago) by michael |
| File size: | 436 byte(s) |
| Log Message: | - Imported libpeak-0.1.2 |
| # | Content |
|---|---|
| 1 | all: refman.pdf |
| 2 | |
| 3 | refman.pdf: refman.tex |
| 4 | pdflatex refman.tex |
| 5 | makeindex refman.idx |
| 6 | pdflatex refman.tex |
| 7 | |
| 8 | latex_count=5 ; \ |
| 9 | while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ |
| 10 | do \ |
| 11 | echo "Rerunning latex...." ;\ |
| 12 | pdflatex refman.tex ;\ |
| 13 | latex_count=`expr $$latex_count - 1` ;\ |
| 14 | done |
| 15 | |
| 16 | |
| 17 | clean: |
| 18 | rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.pdf |