C++ Library containing a lot of needful things: Stack Trace, Command Line Parser, Resource Handling, Configuration Files, Unix Command Execution, Directories, Regular Expressions, Tokenizer, Function Trace, Standard Extensions.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
463 B
19 lines
463 B
all: refman.pdf |
|
|
|
pdf: refman.pdf |
|
|
|
refman.pdf: clean refman.tex |
|
pdflatex refman.tex |
|
makeindex refman.idx |
|
pdflatex refman.tex |
|
latex_count=5 ; \ |
|
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ |
|
do \ |
|
echo "Rerunning latex...." ;\ |
|
pdflatex refman.tex ;\ |
|
latex_count=`expr $$latex_count - 1` ;\ |
|
done |
|
|
|
|
|
clean: |
|
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out refman.pdf
|
|
|