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

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

thesis: Add CFA results to experiments section

  • Property mode set to 100644
File size: 1.9 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 \
43cfa-time \
44}
45
46.PHONY : all rebuild-refs clean wc
47
48all : ${DOCUMENT}
49
50clean : 
51        @rm -fv ${BUILD}/*
52
53wc :
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
68generic-timing.tex : generic-timing.gp generic-timing.dat ${BUILD}
69        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp
70       
71tests-completed.tex : algo-summary.gp algo-summary.dat bu-summary.dat ${BUILD}
72        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/algo-summary.gp
73
74per-prob-histo.tex : per-prob.gp per-prob.tsv ${BUILD}
75        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob.gp
76
77per-prob-depth.tex : per-prob-scatter.gp ${BUILD}
78        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob-scatter.gp
79
80cfa-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.