1 | ## Define the configuration variables. |
---|
2 | |
---|
3 | Build = build |
---|
4 | Figures = figures |
---|
5 | Macros = ../AMA/AMA-stix/ama |
---|
6 | TeXLIB = .:${Macros}:${Build}:../../bibliography: |
---|
7 | LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} |
---|
8 | BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex |
---|
9 | |
---|
10 | MAKEFLAGS = --no-print-directory # --silent |
---|
11 | VPATH = ${Build} ${Figures} evaluation |
---|
12 | |
---|
13 | ## Define the text source files. |
---|
14 | |
---|
15 | SOURCES = ${addsuffix .tex, \ |
---|
16 | Paper \ |
---|
17 | } |
---|
18 | |
---|
19 | FIGURES = ${addsuffix .tex, \ |
---|
20 | Cdecl \ |
---|
21 | } |
---|
22 | |
---|
23 | PICTURES = ${addsuffix .pstex, \ |
---|
24 | } |
---|
25 | |
---|
26 | PROGRAMS = ${addsuffix .tex, \ |
---|
27 | } |
---|
28 | |
---|
29 | GRAPHS = ${addsuffix .tex, \ |
---|
30 | timing \ |
---|
31 | } |
---|
32 | |
---|
33 | ## Define the documents that need to be made. |
---|
34 | |
---|
35 | DOCUMENT = Paper.pdf |
---|
36 | BASE = ${basename ${DOCUMENT}} |
---|
37 | |
---|
38 | # Directives # |
---|
39 | |
---|
40 | .PHONY : all clean # not file names |
---|
41 | |
---|
42 | all : ${DOCUMENT} |
---|
43 | |
---|
44 | clean : |
---|
45 | @rm -frv ${DOCUMENT} ${BASE}.ps WileyNJD-AMA.bst ${BASE}.out.ps ${Build} |
---|
46 | |
---|
47 | Paper.zip : |
---|
48 | zip -x general/.gitignore -x general/"*AMA*" -x general/Paper.out.ps -x general/Paper.tex.plain -x general/evaluation.zip -x general/mail -x general/response -x general/test.c -x general/evaluation.zip -x general/Paper.tex.plain -x general/Paper.ps -x general/Paper.pdf -x general/"*build*" -x general/evaluation/.gitignore -x general/evaluation/timing.xlsx -r Paper.zip general |
---|
49 | |
---|
50 | evaluation.zip : |
---|
51 | zip -x evaluation/.gitignore -x evaluation/timing.xlsx -x evaluation/timing.dat -r evaluation.zip evaluation |
---|
52 | |
---|
53 | # File Dependencies # |
---|
54 | |
---|
55 | ${DOCUMENT} : ${BASE}.ps |
---|
56 | ps2pdf $< |
---|
57 | |
---|
58 | ${BASE}.ps : ${BASE}.dvi |
---|
59 | dvips ${Build}/$< -o $@ |
---|
60 | |
---|
61 | ${BASE}.dvi : Makefile ${Build} ${BASE}.out.ps WileyNJD-AMA.bst ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ |
---|
62 | ../../bibliography/pl.bib |
---|
63 | # Must have *.aux file containing citations for bibtex |
---|
64 | if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi |
---|
65 | ${BibTeX} ${Build}/${basename $@} |
---|
66 | # Some citations reference others so run again to resolve these citations |
---|
67 | ${LaTeX} ${basename $@}.tex |
---|
68 | ${BibTeX} ${Build}/${basename $@} |
---|
69 | # Run again to finish citations |
---|
70 | ${LaTeX} ${basename $@}.tex |
---|
71 | |
---|
72 | ## Define the default recipes. |
---|
73 | |
---|
74 | ${Build} : |
---|
75 | mkdir -p ${Build} |
---|
76 | |
---|
77 | ${BASE}.out.ps : ${Build} |
---|
78 | ln -fs ${Build}/Paper.out.ps . |
---|
79 | |
---|
80 | WileyNJD-AMA.bst : |
---|
81 | ln -fs ../AMA/AMA-stix/ama/WileyNJD-AMA.bst . |
---|
82 | |
---|
83 | ${GRAPHS} : ${Build} timing.gp timing.dat |
---|
84 | gnuplot -e Build="'${Build}/'" evaluation/timing.gp |
---|
85 | |
---|
86 | %.tex : %.fig ${Build} |
---|
87 | fig2dev -L eepic $< > ${Build}/$@ |
---|
88 | |
---|
89 | %.ps : %.fig ${Build} |
---|
90 | fig2dev -L ps $< > ${Build}/$@ |
---|
91 | |
---|
92 | %.pstex : %.fig ${Build} |
---|
93 | fig2dev -L pstex $< > ${Build}/$@ |
---|
94 | fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t |
---|
95 | |
---|
96 | # Local Variables: # |
---|
97 | # compile-command: "make" # |
---|
98 | # End: # |
---|