ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 12b4ab4 was 79c14d6, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago |
fix naming from uw-thesis.tex to uw-ethesis.tex
|
-
Property mode
set to
100644
|
File size:
895 bytes
|
Rev | Line | |
---|
[5a3d67c] | 1 | ### Makefile for Andrew Beach's Masters Thesis
|
---|
| 2 |
|
---|
[79c14d6] | 3 | DOC=uw-ethesis.pdf
|
---|
[5a3d67c] | 4 | BUILD=out
|
---|
| 5 | TEXSRC=$(wildcard *.tex)
|
---|
| 6 | BIBSRC=$(wildcard *.bib)
|
---|
[c88f0cf] | 7 | STYSRC=$(wildcard *.sty)
|
---|
| 8 | CLSSRC=$(wildcard *.cls)
|
---|
[f28fdee] | 9 | TEXLIB= .:../../LaTeXmacros:${BUILD}:
|
---|
[5a3d67c] | 10 | BIBLIB= .:../../bibliography
|
---|
| 11 |
|
---|
| 12 | # Since tex programs like to add their own file extensions:
|
---|
| 13 | BASE= ${DOC:%.pdf=%}
|
---|
| 14 |
|
---|
| 15 | ### Special Rules:
|
---|
| 16 |
|
---|
| 17 | .PHONY: all clean deepclean
|
---|
| 18 |
|
---|
| 19 | ### Commands:
|
---|
| 20 | LATEX=TEXINPUTS=${TEXLIB} pdflatex -halt-on-error -output-directory=${BUILD}
|
---|
| 21 | BIBTEX=BIBINPUTS=${BIBLIB} bibtex
|
---|
| 22 | GLOSSARY=INDEXSTYLE=${BUILD} makeglossaries-lite
|
---|
| 23 |
|
---|
| 24 | ### Rules and Recipies:
|
---|
| 25 |
|
---|
| 26 | all: ${DOC}
|
---|
| 27 |
|
---|
[c88f0cf] | 28 | ${BUILD}/${DOC}: ${TEXSRC} ${BIBSRC} ${STYSRC} ${CLSSRC} Makefile | ${BUILD}
|
---|
[5a3d67c] | 29 | ${LATEX} ${BASE}
|
---|
| 30 | ${BIBTEX} ${BUILD}/${BASE}
|
---|
[f28fdee] | 31 | ${LATEX} ${BASE}
|
---|
[5a3d67c] | 32 | ${GLOSSARY} ${BUILD}/${BASE}
|
---|
| 33 | ${LATEX} ${BASE}
|
---|
| 34 |
|
---|
| 35 | ${DOC}: ${BUILD}/${DOC}
|
---|
| 36 | cp $< $@
|
---|
| 37 |
|
---|
| 38 | ${BUILD}:
|
---|
| 39 | mkdir $@
|
---|
| 40 |
|
---|
| 41 | clean:
|
---|
| 42 | -@rm -rv ${BUILD}
|
---|
| 43 |
|
---|
| 44 | deepclean: clean
|
---|
| 45 | -@rm -v ${DOC}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.