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