blob: ec9ffd40855da48164a3b854b2f722d6f5be1693 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Makefile for minuets 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'
minuets3 = 2011-05-18-board
minuets2 = 2011-04-27-board
minuets1 = 2011-04-13-member
all: minutes2.pdf minuets1.pdf 2011-04-05-board.pdf 2011-03-10-board.pdf 2011-02-20-board.pdf 2011-02-13-board-notes.pdf 2011-01-20-board.pdf 2011-01-10-board.pdf
$(minuets3).pdf: $(minuets3).tex ../preamble/preamble.tex
pdflatex $(minuets3).tex
latex_count=5 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minuets3).log && [ $$latex_count -gt 0 ] ;\
do echo "Rerunning latex...." ; pdflatex $(minuets3).tex; latex_count=`expr $$latex_count - 1`; done
$(minuets2).pdf: $(minuets2).tex ../preamble/preamble.tex
pdflatex $(minuets2).tex
latex_count=5 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minuets2).log && [ $$latex_count -gt 0 ] ;\
do echo "Rerunning latex...." ; pdflatex $(minuets2).tex; latex_count=`expr $$latex_count - 1`; done
$(minuets1).pdf: $(minuets1).tex ../preamble/preamble.tex
pdflatex $(minuets1).tex
latex_count=5 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minuets1).log && [ $$latex_count -gt 0 ] ;\
do echo "Rerunning latex...." ; pdflatex $(minuets1).tex; latex_count=`expr $$latex_count - 1`; done
2011-04-05-board.pdf: 2011-04-05-board.tex ../preamble/preamble.tex
pdflatex 2011-04-05-board.tex
pdflatex 2011-04-05-board.tex
2011-03-10-board.pdf: 2011-03-10-board.aux
pdflatex 2011-03-10-board.tex
2011-03-10-board.aux: 2011-03-10-board.tex ../preamble/preamble.tex
pdflatex 2011-03-10-board.tex
2011-02-20-board.pdf: 2011-02-20-board.aux
pdflatex 2011-02-20-board.tex
2011-02-20-board.aux: 2011-02-20-board.tex ../preamble/preamble.tex
pdflatex 2011-02-20-board.tex
2011-02-13-board-notes.pdf: 2011-02-13-board-notes.aux
pdflatex 2011-02-13-board-notes.tex
2011-02-13-board-notes.aux: 2011-02-13-board-notes.tex ../preamble/preamble.tex
pdflatex 2011-02-13-board-notes.tex
2011-01-20-board.pdf: 2011-01-20-board.aux
pdflatex 2011-01-20-board.tex
2011-01-20-board.aux: 2011-01-20-board.tex ../preamble/preamble.tex
pdflatex 2011-01-20-board.tex
2011-01-26-board.pdf: 2011-01-26-board.aux
pdflatex 2011-01-26-board.tex
2011-01-26-board.aux: 2011-01-26-board.tex ../preamble/preamble.tex
pdflatex 2011-01-26-board.tex
2011-01-10-board.pdf: 2011-01-10-board.aux
pdflatex 2011-01-10-board.tex
2011-01-10-board.aux: 2011-01-10-board.tex ../preamble/preamble.tex
pdflatex 2011-01-10-board.tex
clean:
rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~
|