source: doc/theses/mike_brooks_MMath/Makefile @ 830edc6

Last change on this file since 830edc6 was 297b796, checked in by Peter A. Buhr <pabuhr@…>, 3 months ago

add pl.bib to file dependencies

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