source: doc/theses/mike_brooks_MMath/Makefile@ affb51b

ADT ast-experimental
Last change on this file since affb51b was 1a9592a, checked in by Michael Brooks <mlbrooks@…>, 3 years ago

Accepting the new structure, deleting the old

  • Property mode set to 100644
File size: 1.4 KB
Line 
1# Configuration variables
2
3Build = build
4Pictures = pictures
5Programs = programs
6
7TeXSRC = ${wildcard *.tex}
8PicSRC = ${notdir ${wildcard ${Pictures}/*.png}}
9DemoSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}}
10PgmSRC = ${notdir ${wildcard ${Programs}/*.cfa}}
11BibSRC = ${wildcard *.bib}
12
13TeXLIB = .:../../LaTeXmacros:${Build}: # common latex macros
14BibLIB = .:../../bibliography # common citation repository
15
16MAKEFLAGS = --no-print-directory # --silent
17VPATH = ${Build} ${Pictures} ${Programs} # extra search path for file names used in document
18
19DOCUMENT = uw-ethesis.pdf
20BASE = ${basename ${DOCUMENT}} # remove suffix
21
22# Commands
23
24LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build}
25BibTeX = BIBINPUTS=${BibLIB} && export BIBINPUTS && bibtex
26CFA = cfa
27
28# Rules and Recipes
29
30.PHONY : all clean # not file names
31.ONESHELL :
32
33all : ${DOCUMENT}
34
35clean :
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}
48 cp ${Build}/$@ $@
49
50${Build}:
51 mkdir -p $@
52
53%-demo.tex: %-demo | ${Build}
54 ${Build}/$< > ${Build}/$@
55
56%-demo: %-demo.cfa
57 ${CFA} $< -o ${Build}/$@
58
Note: See TracBrowser for help on using the repository browser.