Changeset 9507ce3 for doc/theses/aaron_moss_PhD/phd/Makefile
- Timestamp:
- Oct 11, 2018, 2:48:48 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- cdc02f2
- Parents:
- 2a75572 (diff), 1f690b3 (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) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/aaron_moss_PhD/phd/Makefile
r2a75572 r9507ce3 1 1 BUILD = build 2 2 BIBDIR = ../../../bibliography 3 EVALDIR = evaluation 3 4 TEXLIB = .:${BUILD}:${BIBDIR}: 4 5 5 LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction= -output-directory=${BUILD} 6 # LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction=nonstopmode -halt-on-error -output-directory=${BUILD} 7 LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${BUILD} 6 8 BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex 9 10 VPATH = ${EVALDIR} 7 11 8 12 BASE = thesis … … 17 21 introduction \ 18 22 background \ 23 generic-types \ 19 24 type-environment \ 20 25 resolution-heuristics \ 21 26 conclusion \ 27 } 28 29 GRAPHS = ${addsuffix .tex, \ 30 generic-timing \ 22 31 } 23 32 … … 32 41 wc ${SOURCES} 33 42 34 ${DOCUMENT} : ${SOURCES} ${BUILD} 35 ${LATEX} ${BASE} 36 ${LATEX} ${BASE} 43 ${DOCUMENT} : ${BASE}.ps 44 ps2pdf ${BUILD}/$< 37 45 38 rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD} 46 ${BASE}.ps : ${BASE}.dvi 47 dvips ${BUILD}/$< -o ${BUILD}/$@ 48 49 ${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${BIBFILE} ${BUILD} 39 50 ${LATEX} ${BASE} 40 51 ${BIBTEX} ${BUILD}/${BASE} … … 42 53 ${LATEX} ${BASE} 43 54 55 ${GRAPHS} : generic-timing.gp generic-timing.dat ${BUILD} 56 gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp 57 44 58 ${BUILD}: 45 59 mkdir -p ${BUILD}
Note:
See TracChangeset
for help on using the changeset viewer.