# Makefile for minutes with usual treatments, that is noting extra then just compilation. # # Gustav Eek 2011 noarg: echo -e '\nThis script do not run without arguments. Run for example:\n\n make 2011-02-13-board-notes.pdf\n make all\n' operationalplan1 = operational-plan-2012 all: $(operationalplan1).pdf $(operationalplan1).pdf: $(operationalplan1).tex $(operationalplan1).main.tex ../preamble/preamble.tex pdflatex $(operationalplan1).main.tex latex_count=5 ; \ while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(operationalplan1).main.log && [ $$latex_count -gt 0 ] ;\ do echo "Rerunning latex...." ; pdflatex $(operationalplan1).tex; latex_count=`expr $$latex_count - 1`; done mv $(operationalplan1).main.pdf $@ clean: rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~