Changeset ec71a50 for doc/theses/aaron_moss_PhD/phd/Makefile
- Timestamp:
- Sep 21, 2018, 11:26:31 PM (6 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:
- 3b1825b, fcc57ba
- Parents:
- 031a88a9 (diff), 371ef1d (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
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/aaron_moss_PhD/phd/Makefile
r031a88a9 rec71a50 1 LATEX = pdflatex -interaction=nonstopmode 2 BIBTEX = bibtex 1 BUILD = build 2 BIBDIR = ../../../bibliography 3 TEXLIB = .:${BUILD}:${BIBDIR}: 4 5 LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction= -output-directory=${BUILD} 6 BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex 3 7 4 8 BASE = thesis 5 9 DOCUMENT = ${BASE}.pdf 6 AUX = ${BASE}.aux ${BASE}.bbl ${BASE}.blg ${BASE}.log ${BASE}.out ${BASE}.toc 10 BIBFILE = ${BIBDIR}/pl.bib 7 11 8 12 SOURCES = ${addsuffix .tex, \ … … 23 27 24 28 clean : 25 @rm -f rv ${DOCUMENT} ${AUX}29 @rm -fv ${BUILD}/* 26 30 27 31 wc : 28 32 wc ${SOURCES} 29 33 30 ${DOCUMENT} : ${SOURCES} 34 ${DOCUMENT} : ${SOURCES} ${BUILD} 31 35 ${LATEX} ${BASE} 32 36 ${LATEX} ${BASE} 33 37 34 rebuild-refs : ${SOURCES} aaron-thesis.bib38 rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD} 35 39 ${LATEX} ${BASE} 36 ${BIBTEX} ${B ASE}40 ${BIBTEX} ${BUILD}/${BASE} 37 41 ${LATEX} ${BASE} 38 42 ${LATEX} ${BASE} 43 44 ${BUILD}: 45 mkdir -p ${BUILD}
Note: See TracChangeset
for help on using the changeset viewer.