source: doc/theses/aaron_moss/phd/Makefile @ 0cf9ffd

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

CFA background information for thesis, mostly from comp II proposal

  • 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.