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

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr no_list persistent-indexer pthread-emulation qualifiedEnum stuck-waitfor-destruct
Last change on this file since 2a9d12d was 2a9d12d, checked in by Aaron Moss <bruceiv@…>, 8 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.