source: doc/theses/aaron_moss/phd/Makefile@ 546b51e

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 546b51e was 62e782e, checked in by Aaron Moss <a3moss@…>, 7 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.