source: doc/theses/mike_brooks_MMath/Makefile

Last change on this file was 297b796, checked in by Peter A. Buhr <pabuhr@…>, 2 days ago

add pl.bib to file dependencies

  • Property mode set to 100644
File size: 2.3 KB
Line 
1# Configuration variables
2
3Build = build
4Pictures = pictures
5Programs = programs
6
7LaTMac = ../../LaTeXmacros
8BibRep = ../../bibliography
9
10TeXSRC = ${wildcard *.tex}
11PicSRC = ${notdir ${wildcard ${Pictures}/*.png}}
12DemoSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}}
13PgmSRC = ${notdir ${wildcard ${Programs}/*}}
14RunPgmSRC = ${notdir ${wildcard ${Programs}/*.run.*}}
15BibSRC = ${wildcard *.bib}
16
17TeXLIB = .:${LaTMac}:${Build}:                  # common latex macros
18BibLIB = .:${BibRep}:                           # common citation repository
19
20#MAKEFLAGS = --no-print-directory # --silent
21VPATH = ${Build} ${Pictures} ${Programs} # extra search path for file names used in document
22
23DOCUMENT = uw-ethesis.pdf
24BASE = ${basename ${DOCUMENT}}                  # remove suffix
25
26DemoTex = ${DemoSRC:%.cfa=${Build}/%.tex} 
27RunPgmExe = ${addprefix ${Build}/,${basename ${basename ${RunPgmSRC}}}}
28RunPgmOut = ${RunPgmExe:%=%.out}
29
30# Commands
31
32LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && pdflatex -halt-on-error -output-directory=${Build}
33BibTeX = BIBINPUTS=${BibLIB} && export BIBINPUTS && bibtex
34CFA = cfa -O0 -g
35CC  = gcc -O0 -g
36CXX = g++-11 --std=c++20 -O0 -g
37
38# Rules and Recipes
39
40.PHONY : all fragments_ran clean                        # not file names
41.PRECIOUS : ${Build}/% ${Build}/%-demo      # don't delete intermediates
42.ONESHELL :
43
44all : fragments_ran ${DOCUMENT}
45
46fragments_ran : $(RunPgmOut)
47
48clean :
49        @rm -frv ${DOCUMENT} ${Build}
50
51# File Dependencies
52
53%.pdf : ${TeXSRC} ${DemoTex} ${PicSRC} ${PgmSRC} ${BibSRC} ${BibRep}/pl.bib ${LaTMac}/common.tex Makefile | ${Build}
54        ${LaTeX} ${BASE}
55        ${BibTeX} ${Build}/${BASE}
56        ${LaTeX} ${BASE}
57        # if needed, run latex again to get citations
58        if fgrep -s "LaTeX Warning: Citation" ${basename $@}.log ; then ${LaTeX} ${BASE} ; fi
59#       ${Glossary} ${Build}/${BASE}
60#       ${LaTeX} ${BASE}
61        cp ${Build}/$@ $@
62
63${Build}:
64        mkdir -p $@
65
66%-demo.tex: %-demo | ${Build}
67        $< > $@
68
69${Build}/%-demo: ${Programs}/%-demo.cfa | ${Build}
70        ${CFA} $< -o $@
71
72${Build}/%: ${Programs}/%.run.cfa | ${Build} # cfa cannot handle pipe
73        sed -f ${Programs}/sedcmd $< > ${Build}/tmp.cfa; ${CFA} ${Build}/tmp.cfa -o $@
74
75${Build}/%: ${Programs}/%.run.c | ${Build}
76        sed -f ${Programs}/sedcmd $< | ${CC} -x c -I ${Programs} -o $@ -
77
78${Build}/%: ${Programs}/%.run.cpp | ${Build}
79        sed -f ${Programs}/sedcmd $< | ${CXX} -x c++ -I ${Programs} -o $@ -
80
81${Build}/%.out: ${Build}/% | ${Build}
82        $< > $@
83
84-include ${Build}/*.d
Note: See TracBrowser for help on using the repository browser.