source:
doc/theses/rob_schluntz/Makefile@
f89a111
| Last change on this file since f89a111 was 23c27039, checked in by , 8 years ago | |
|---|---|
|
|
| File size: 671 bytes | |
| Line | |
|---|---|
| 1 | Build = build |
| 2 | Macros = ../../LaTeXmacros |
| 3 | TeXLIB = .:${Macros}:${Build}:../../bibliography: |
| 4 | LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build} |
| 5 | BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex |
| 6 | |
| 7 | VPATH = ${Build} |
| 8 | |
| 9 | all : thesis.pdf |
| 10 | |
| 11 | thesis.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 | |
| 22 | clean : |
| 23 | @rm -frv ${Build} |
| 24 | |
| 25 | spotless : clean |
| 26 | rm -f thesis.pdf thesis.ps |
Note:
See TracBrowser
for help on using the repository browser.