source: doc/theses/aaron_moss_PhD/phd/Makefile @ 4c41b17

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

thesis: Add per-problem histogram

  • Property mode set to 100644
File size: 1.6 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 \
42}
43
44.PHONY : all rebuild-refs clean wc
45
46all : ${DOCUMENT}
47
48clean : 
49        @rm -fv ${BUILD}/*
50
51wc :
52        wc ${SOURCES}
53
54${DOCUMENT} : ${BASE}.ps
55        ps2pdf ${BUILD}/$<
56
57${BASE}.ps : ${BASE}.dvi
58        dvips ${BUILD}/$< -o ${BUILD}/$@
59
60${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${FIGURES} ${BIBFILE} ${BUILD}
61        ${LATEX} ${BASE}
62        ${BIBTEX} ${BUILD}/${BASE}
63        ${LATEX} ${BASE}
64        ${LATEX} ${BASE}
65
66generic-timing.tex : generic-timing.gp generic-timing.dat ${BUILD}
67        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp
68       
69tests-completed.tex : algo-summary.gp algo-summary.dat bu-summary.dat ${BUILD}
70        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/algo-summary.gp
71
72per-prob-histo.tex : per-prob.gp per-prob.tsv ${BUILD}
73        gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob.gp
74
75${BUILD}: 
76        mkdir -p ${BUILD}
Note: See TracBrowser for help on using the repository browser.