aboutsummaryrefslogtreecommitdiffstats
path: root/2012/Makefile
blob: c9c852fa1074a1304ea03c087a9ea3ca8d909846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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'

minutes2 = 2012-02-27-board
minutes1 = 2012-01-19-board

all: $(minutes1) $(minutes2) 

$(minutes2).pdf: $(minutes2).tex ../preamble/preamble.tex
	pdflatex $(minutes2).tex
	latex_count=5 ; \
	while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minutes2).log && [ $$latex_count -gt 0 ] ;\
	   do echo "Rerunning latex...." ;  pdflatex $(minutes2).tex;  latex_count=`expr $$latex_count - 1`; done
$(minutes1).pdf: $(minutes1).tex ../preamble/preamble.tex
	pdflatex $(minutes1).tex
	latex_count=5 ; \
	while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minutes1).log && [ $$latex_count -gt 0 ] ;\
	   do echo "Rerunning latex...." ;  pdflatex $(minutes1).tex;  latex_count=`expr $$latex_count - 1`; done

clean:
	rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~