Changeset 8b590a4 for doc/theses/aaron_moss_PhD/phd/Makefile
- Timestamp:
- Mar 13, 2019, 11:35:33 AM (7 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- d078afd
- Parents:
- 1c35c78 (diff), 30e32b2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
doc/theses/aaron_moss_PhD/phd/Makefile (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/aaron_moss_PhD/phd/Makefile
r1c35c78 r8b590a4 2 2 BIBDIR = ../../../bibliography 3 3 EVALDIR = evaluation 4 FIGDIR = figures 4 5 TEXLIB = .:${BUILD}:${BIBDIR}: 5 6 … … 8 9 BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex 9 10 10 VPATH = ${EVALDIR} 11 VPATH = ${EVALDIR} ${FIGDIR} 11 12 12 13 BASE = thesis … … 22 23 background \ 23 24 generic-types \ 25 resolution-heuristics \ 24 26 type-environment \ 25 resolution-heuristics \27 experiments \ 26 28 conclusion \ 29 generic-bench \ 30 } 31 32 FIGURES = ${addsuffix .eps, \ 33 safe-conv-graph \ 34 resolution-dag \ 35 union-find-with-classes \ 36 persistent-union-find \ 27 37 } 28 38 29 39 GRAPHS = ${addsuffix .tex, \ 30 40 generic-timing \ 41 tests-completed \ 42 per-prob-histo \ 43 per-prob-depth \ 44 cfa-time \ 31 45 } 32 46 … … 47 61 dvips ${BUILD}/$< -o ${BUILD}/$@ 48 62 49 ${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${ BIBFILE} ${BUILD}63 ${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${FIGURES} ${BIBFILE} ${BUILD} 50 64 ${LATEX} ${BASE} 51 65 ${BIBTEX} ${BUILD}/${BASE} … … 53 67 ${LATEX} ${BASE} 54 68 55 ${GRAPHS}: generic-timing.gp generic-timing.dat ${BUILD}69 generic-timing.tex : generic-timing.gp generic-timing.dat ${BUILD} 56 70 gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp 71 72 tests-completed.tex : algo-summary.gp algo-summary.dat bu-summary.dat ${BUILD} 73 gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/algo-summary.gp 74 75 per-prob-histo.tex : per-prob.gp per-prob.tsv ${BUILD} 76 gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob.gp 77 78 per-prob-depth.tex : per-prob-scatter.gp ${BUILD} 79 gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob-scatter.gp 80 81 cfa-time.tex : cfa-plots.gp cfa-time.tsv cfa-mem.tsv ${BUILD} 82 gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/cfa-plots.gp 57 83 58 84 ${BUILD}:
Note:
See TracChangeset
for help on using the changeset viewer.