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 | |
---|
1 | LATEX = pdflatex -interaction=nonstopmode
|
---|
2 | BIBTEX = bibtex
|
---|
3 |
|
---|
4 | BASE = thesis
|
---|
5 | DOCUMENT = ${BASE}.pdf
|
---|
6 | AUX = ${BASE}.aux ${BASE}.bbl ${BASE}.blg ${BASE}.log ${BASE}.out ${BASE}.toc
|
---|
7 |
|
---|
8 | SOURCES = ${addsuffix .tex, \
|
---|
9 | thesis \
|
---|
10 | frontpgs \
|
---|
11 | introduction \
|
---|
12 | background \
|
---|
13 | type-environment \
|
---|
14 | resolution-heuristics \
|
---|
15 | conclusion \
|
---|
16 | }
|
---|
17 |
|
---|
18 | .PHONY : all rebuild-refs clean wc
|
---|
19 |
|
---|
20 | all : ${DOCUMENT}
|
---|
21 |
|
---|
22 | clean :
|
---|
23 | @rm -frv ${DOCUMENT} ${AUX}
|
---|
24 |
|
---|
25 | wc :
|
---|
26 | wc ${SOURCES}
|
---|
27 |
|
---|
28 | ${DOCUMENT} : ${SOURCES}
|
---|
29 | ${LATEX} ${BASE}
|
---|
30 | ${LATEX} ${BASE}
|
---|
31 |
|
---|
32 | rebuild-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.