source: doc/theses/aaron_moss_PhD/phd/Makefile @ d42969d

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since d42969d was 060b12d, checked in by Aaron Moss <a3moss@…>, 5 years ago

Add scatter plots describing instance difficulty

  • Property mode set to 100644
File size: 1.8 KB
Line 
1BUILD = build
2BIBDIR = ../../../bibliography
3EVALDIR = evaluation
4FIGDIR = figures
5TEXLIB = .:${BUILD}:${BIBDIR}:
6
7# LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction=nonstopmode -halt-on-error -output-directory=${BUILD}
8LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${BUILD}
9BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex
10
11VPATH = ${EVALDIR} ${FIGDIR}
12
13BASE = thesis
14DOCUMENT = ${BASE}.pdf
15BIBFILE = ${BIBDIR}/pl.bib
16
17SOURCES = ${addsuffix .tex, \
18thesis \
19macros \
20cfa-macros \
21frontpgs \
22introduction \
23background \
24generic-types \
25resolution-heuristics \
26type-environment \
27experiments \
28conclusion \
29}
30
31FIGURES = ${addsuffix .eps, \
32safe-conv-graph \
33resolution-dag \
34union-find-with-classes \
35persistent-union-find \
36}
37
38GRAPHS = ${addsuffix .tex, \
39generic-timing \
40tests-completed \
41per-prob-histo \
42per-prob-depth \
43}
44
45.PHONY : all rebuild-refs clean wc
46
47all : ${DOCUMENT}
48
49clean : 
50        @rm -fv ${BUILD}/*
51
52wc :
53        wc ${SOURCES}
54
55${DOCUMENT} : ${BASE}.ps
56        ps2pdf ${BUILD}/$<
57
58${BASE}.ps : ${BASE}.dvi
59        dvips ${BUILD}/$< -o ${BUILD}/$@
60
61${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${FIGURES} ${BIBFILE} ${BUILD}
62        ${LATEX} ${BASE}
63        ${BIBTEX} ${BUILD}/${BASE}
64        ${LATEX} ${BASE}
65        ${LATEX} ${BASE}
66
67generic-timing.tex : generic-timing.gp generic-timing.dat ${BUILD}
68        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp
69       
70tests-completed.tex : algo-summary.gp algo-summary.dat bu-summary.dat ${BUILD}
71        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/algo-summary.gp
72
73per-prob-histo.tex : per-prob.gp per-prob.tsv ${BUILD}
74        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob.gp
75
76per-prob-depth.tex : per-prob-scatter.gp ${BUILD}
77        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob-scatter.gp
78
79${BUILD}: 
80        mkdir -p ${BUILD}
Note: See TracBrowser for help on using the repository browser.