source: doc/theses/aaron_moss_PhD/phd/Makefile@ 67982887

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 67982887 was 67982887, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

specialize thesis directory-names

  • Property mode set to 100644
File size: 627 bytes
RevLine 
[2a9d12d]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
[62e782e]8SOURCES = ${addsuffix .tex, \
9thesis \
[0cf9ffd]10macros \
11cfa-macros \
[62e782e]12frontpgs \
13introduction \
14background \
15type-environment \
16resolution-heuristics \
17conclusion \
18}
19
20.PHONY : all rebuild-refs clean wc
[2a9d12d]21
22all : ${DOCUMENT}
23
24clean :
25 @rm -frv ${DOCUMENT} ${AUX}
26
[62e782e]27wc :
28 wc ${SOURCES}
29
30${DOCUMENT} : ${SOURCES}
[2a9d12d]31 ${LATEX} ${BASE}
32 ${LATEX} ${BASE}
33
[62e782e]34rebuild-refs : ${SOURCES} aaron-thesis.bib
[2a9d12d]35 ${LATEX} ${BASE}
36 ${BIBTEX} ${BASE}
37 ${LATEX} ${BASE}
38 ${LATEX} ${BASE}
Note: See TracBrowser for help on using the repository browser.