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