source: doc/theses/mubeen_zulfiqar_MMath/Makefile@ ab5498ec

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 ab5498ec was ab5498ec, checked in by m3zulfiq <m3zulfiq@…>, 5 years ago

just added an empty thesis directory with Makefil from andrew's thesis

  • Property mode set to 100644
File size: 898 bytes
Line 
1### Makefile from Andrew Beach's Masters Thesis
2
3DOC=thesis.pdf
4BUILD=out
5TEXSRC=$(wildcard *.tex)
6BIBSRC=$(wildcard *.bib)
7STYSRC=$(wildcard *.sty)
8CLSSRC=$(wildcard *.cls)
9TEXLIB= .:../../LaTeXmacros:${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}
21#BIBTEX=BIBINPUTS=${BIBLIB} bibtex
22#GLOSSARY=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# ${LATEX} ${BASE}
32# ${GLOSSARY} ${BUILD}/${BASE}
33# ${LATEX} ${BASE}
34
35${DOC}: ${BUILD}/${DOC}
36 cp $< $@
37
38${BUILD}:
39 mkdir $@
40
41clean:
42 -@rm -rv ${BUILD}
43
44deepclean: clean
45 -@rm -v ${DOC}
Note: See TracBrowser for help on using the repository browser.