source: doc/theses/aaron_moss/phd/Makefile @ 62e782e

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

Initial draft of thesis introduction

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