source:
doc/theses/mike_brooks_MMath/Makefile@
e378c730
| Last change on this file since e378c730 was 1a9592a, checked in by , 4 years ago | |
|---|---|
|
|
| File size: 1.4 KB | |
| Rev | Line | |
|---|---|---|
| [bbf6a180] | 1 | # Configuration variables |
| [8e819a9] | 2 | |
| [bbf6a180] | 3 | Build = build |
| 4 | Pictures = pictures | |
| 5 | Programs = programs | |
| [8e819a9] | 6 | |
| [bbf6a180] | 7 | TeXSRC = ${wildcard *.tex} |
| 8 | PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} | |
| 9 | DemoSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}} | |
| 10 | PgmSRC = ${notdir ${wildcard ${Programs}/*.cfa}} | |
| 11 | BibSRC = ${wildcard *.bib} | |
| [8e819a9] | 12 | |
| [bbf6a180] | 13 | TeXLIB = .:../../LaTeXmacros:${Build}: # common latex macros |
| 14 | BibLIB = .:../../bibliography # common citation repository | |
| [8e819a9] | 15 | |
| 16 | MAKEFLAGS = --no-print-directory # --silent | |
| [bbf6a180] | 17 | VPATH = ${Build} ${Pictures} ${Programs} # extra search path for file names used in document |
| [8e819a9] | 18 | |
| [bbf6a180] | 19 | DOCUMENT = uw-ethesis.pdf |
| 20 | BASE = ${basename ${DOCUMENT}} # remove suffix | |
| [8e819a9] | 21 | |
| [bbf6a180] | 22 | # Commands |
| [8e819a9] | 23 | |
| [bbf6a180] | 24 | LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build} |
| 25 | BibTeX = BIBINPUTS=${BibLIB} && export BIBINPUTS && bibtex | |
| [1a9592a] | 26 | CFA = cfa |
| [8e819a9] | 27 | |
| [bbf6a180] | 28 | # Rules and Recipes |
| [8e819a9] | 29 | |
| [bbf6a180] | 30 | .PHONY : all clean # not file names |
| 31 | .ONESHELL : | |
| [8e819a9] | 32 | |
| 33 | all : ${DOCUMENT} | |
| 34 | ||
| 35 | clean : | |
| [bbf6a180] | 36 | @rm -frv ${DOCUMENT} ${Build} |
| 37 | ||
| 38 | # File Dependencies | |
| 39 | ||
| 40 | %.pdf : ${TeXSRC} ${DemoSRC:%.cfa=%.tex} ${PicSRC} ${PgmSRC} ${BibSRC} Makefile | ${Build} | |
| 41 | ${LaTeX} ${BASE} | |
| 42 | ${BibTeX} ${Build}/${BASE} | |
| 43 | ${LaTeX} ${BASE} | |
| 44 | # if needed, run latex again to get citations | |
| 45 | if fgrep -s "LaTeX Warning: Citation" ${basename $@}.log ; then ${LaTeX} ${BASE} ; fi | |
| 46 | # ${Glossary} ${Build}/${BASE} | |
| 47 | # ${LaTeX} ${BASE} | |
| [8e819a9] | 48 | cp ${Build}/$@ $@ |
| 49 | ||
| 50 | ${Build}: | |
| [bbf6a180] | 51 | mkdir -p $@ |
| 52 | ||
| 53 | %-demo.tex: %-demo | ${Build} | |
| 54 | ${Build}/$< > ${Build}/$@ | |
| 55 | ||
| 56 | %-demo: %-demo.cfa | |
| [1a9592a] | 57 | ${CFA} $< -o ${Build}/$@ |
| [8e819a9] | 58 |
Note:
See TracBrowser
for help on using the repository browser.