source: doc/theses/rob_schluntz_MMath/Makefile@ b7b573c

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 b7b573c was 67982887, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

specialize thesis directory-names

  • Property mode set to 100644
File size: 671 bytes
Line 
1Build = build
2Macros = ../../LaTeXmacros
3TeXLIB = .:${Macros}:${Build}:../../bibliography:
4LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build}
5BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
6
7VPATH = ${Build}
8
9all : thesis.pdf
10
11thesis.pdf : Makefile ${Build} ${Macros}/common.tex cfa-format.tex thesis.tex intro.tex ctordtor.tex tuples.tex variadic.tex conclusions.tex
12 ${LaTeX} thesis
13 ${BibTeX} ${Build}/thesis
14 ${LaTeX} thesis
15 ${LaTeX} thesis
16 cp -p ${Build}/thesis.pdf .
17 pdf2ps thesis.pdf thesis.ps
18
19${Build}:
20 mkdir -p ${Build}
21
22clean :
23 @rm -frv ${Build}
24
25spotless : clean
26 rm -f thesis.pdf thesis.ps
Note: See TracBrowser for help on using the repository browser.