source: doc/theses/aaron_moss_PhD/phd/Makefile @ 031a88a9

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resnenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since 031a88a9 was 67982887, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

specialize thesis directory-names

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