source: doc/theses/andrew_beach_MMath/Makefile @ cde1bf9

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since cde1bf9 was 6e7b969, checked in by Andrew Beach <ajbeach@…>, 3 years ago

Andrew MMath: First draft of existing features and updated framework.

  • Property mode set to 100644
File size: 855 bytes
Line 
1### Makefile for Andrew Beach's Masters Thesis
2
3DOC=thesis.pdf
4BUILD=out
5TEXSRC=$(wildcard *.tex)
6BIBSRC=$(wildcard *.bib)
7STYSRC=$(wildcard *.sty)
8CLSSRC=$(wildcard *.cls)
9TEXLIB= .:${BUILD}:
10BIBLIB= .:../../bibliography
11
12# Since tex programs like to add their own file extensions:
13BASE= ${DOC:%.pdf=%}
14
15### Special Rules:
16
17.PHONY: all clean deepclean
18
19### Commands:
20LATEX=TEXINPUTS=${TEXLIB} pdflatex -halt-on-error -output-directory=${BUILD}
21BIBTEX=BIBINPUTS=${BIBLIB} bibtex
22GLOSSARY=INDEXSTYLE=${BUILD} makeglossaries-lite
23
24### Rules and Recipies:
25
26all: ${DOC}
27
28${BUILD}/${DOC}: ${TEXSRC} ${BIBSRC} ${STYSRC} ${CLSSRC} Makefile | ${BUILD}
29        ${LATEX} ${BASE}
30        ${BIBTEX} ${BUILD}/${BASE}
31        ${GLOSSARY} ${BUILD}/${BASE}
32        ${LATEX} ${BASE}
33
34${DOC}: ${BUILD}/${DOC}
35        cp $< $@
36
37${BUILD}:
38        mkdir $@
39
40clean:
41        -@rm -rv ${BUILD}
42
43deepclean: clean
44        -@rm -v ${DOC}
Note: See TracBrowser for help on using the repository browser.