ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resnenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change
on this file since 48b7085e was
48b7085e,
checked in by Aaron Moss <a3moss@…>, 6 years ago
|
Start into generic types design in thesis
|
-
Property mode set to
100644
|
File size:
813 bytes
|
Line | |
---|
1 | BUILD = build |
---|
2 | BIBDIR = ../../../bibliography |
---|
3 | TEXLIB = .:${BUILD}:${BIBDIR}: |
---|
4 | |
---|
5 | LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction= -output-directory=${BUILD} |
---|
6 | BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex |
---|
7 | |
---|
8 | BASE = thesis |
---|
9 | DOCUMENT = ${BASE}.pdf |
---|
10 | BIBFILE = ${BIBDIR}/pl.bib |
---|
11 | |
---|
12 | SOURCES = ${addsuffix .tex, \ |
---|
13 | thesis \ |
---|
14 | macros \ |
---|
15 | cfa-macros \ |
---|
16 | frontpgs \ |
---|
17 | introduction \ |
---|
18 | background \ |
---|
19 | generic-types \ |
---|
20 | type-environment \ |
---|
21 | resolution-heuristics \ |
---|
22 | conclusion \ |
---|
23 | } |
---|
24 | |
---|
25 | .PHONY : all rebuild-refs clean wc |
---|
26 | |
---|
27 | all : ${DOCUMENT} |
---|
28 | |
---|
29 | clean : |
---|
30 | @rm -fv ${BUILD}/* |
---|
31 | |
---|
32 | wc : |
---|
33 | wc ${SOURCES} |
---|
34 | |
---|
35 | ${DOCUMENT} : ${SOURCES} ${BUILD} |
---|
36 | ${LATEX} ${BASE} |
---|
37 | ${LATEX} ${BASE} |
---|
38 | |
---|
39 | rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD} |
---|
40 | ${LATEX} ${BASE} |
---|
41 | ${BIBTEX} ${BUILD}/${BASE} |
---|
42 | ${LATEX} ${BASE} |
---|
43 | ${LATEX} ${BASE} |
---|
44 | |
---|
45 | ${BUILD}: |
---|
46 | mkdir -p ${BUILD} |
---|
Note: See
TracBrowser
for help on using the repository browser.