source: doc/theses/aaron_moss/phd/Makefile @ 2a9d12d

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resnenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since 2a9d12d was 2a9d12d, checked in by Aaron Moss <bruceiv@…>, 6 years ago

Initial stubs of thesis files

  • Property mode set to 100644
File size: 406 bytes
Line 
1LATEX = pdflatex -interaction=nonstopmode
2BIBTEX = bibtex
3
4BASE = thesis
5DOCUMENT = ${BASE}.pdf
6AUX = ${BASE}.aux ${BASE}.bbl ${BASE}.blg ${BASE}.log ${BASE}.out ${BASE}.toc
7
8.PHONY : all rebuild-refs clean
9
10all : ${DOCUMENT}
11
12clean : 
13        @rm -frv ${DOCUMENT} ${AUX}
14
15${DOCUMENT} :
16        ${LATEX} ${BASE}
17        ${LATEX} ${BASE}
18
19rebuild-refs : 
20        ${LATEX} ${BASE}
21        ${BIBTEX} ${BASE}
22        ${LATEX} ${BASE}
23        ${LATEX} ${BASE}
Note: See TracBrowser for help on using the repository browser.