# Makefile for minutes with usual treatments, that is noting extra then just compilation. # # Gustav Eek 2011 ALL = \ board-meeting-agenda \ yearly-meeting-agenda \ common-makefile = ../resources/Makefile-common all: $(addsuffix .pdf, $(ALL)) %.pdf: %.tex ../preamble/preamble.tex latex_count=5 ; \ jobname=$(basename $@) ;\ pdflatex -jobname="$$jobname" $< ;\ while egrep -s 'Rerun (LaTeX|to get cross-references right)' $$jobname.log && [ $$latex_count -gt 0 ] ;\ do echo "Rerunning latex...." ; pdflatex $<; latex_count=`expr $$latex_count - 1`; done send: # sends to fripost.org for publication make -f $(common-makefile) send SEND_FILES="$(ALL)" clean: rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~