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