source: doc/theses/thierry_delisle_PhD/thesis/Makefile @ cc287800

ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
Last change on this file since cc287800 was b20465a, checked in by Peter A. Buhr <pabuhr@…>, 3 years ago

fix Makefile problem building fairness.svg

  • Property mode set to 100644
File size: 3.0 KB
Line 
1## Define the configuration variables.
2
3Build = build
4Figures = img
5Macros = ../../../LaTeXmacros
6TeXLIB = .:${Macros}:${Build}:../../../bibliography:
7LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
8BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
9
10MAKEFLAGS = --no-print-directory # --silent
11VPATH = ${Build} ${Figures}
12
13## Define the text source files.
14TEXTS = ${addprefix text/, ${addsuffix .tex, \
15        front \
16        intro \
17        existing \
18        runtime \
19        core \
20        practice \
21        io \
22}}
23
24FIGURES = ${addsuffix .tex, \
25}
26
27PICTURES = ${addsuffix .pstex, \
28        base \
29        empty \
30        emptybit \
31        emptytls \
32        emptytree \
33        fairness \
34        io_uring \
35        pivot_ring \
36        system \
37}
38
39PROGRAMS = ${addsuffix .tex, \
40}
41
42GRAPHS = ${addsuffix .tex, \
43}
44
45## Define the documents that need to be made.
46all: thesis.pdf
47thesis.pdf: ${TEXTS} ${FIGURES} ${PICTURES} thesis.tex glossary.tex local.bib
48
49DOCUMENT = thesis.pdf
50BASE = ${basename ${DOCUMENT}}
51
52# Directives #
53
54.NOTPARALLEL:                                           # cannot make in parallel
55
56.PHONY : all clean                                      # not file names
57
58all : ${DOCUMENT}
59
60clean :
61        @rm -frv ${DOCUMENT} ${BASE}.ps ${Build}
62
63# File Dependencies #
64
65%.pdf : build/%.ps | ${Build}
66        ps2pdf $<
67
68build/%.ps : build/%.dvi | ${Build}
69        dvips $< -o $@
70
71build/%.dvi : %.tex Makefile | ${Build}
72        # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
73        if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi
74        # Must have *.aux file containing citations for bibtex
75        if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} $< ; fi
76        -${BibTeX} ${basename $@}
77        # Some citations reference others so run again to resolve these citations
78        ${LaTeX} $<
79        -${BibTeX} ${basename $@}
80        # Make index from *.aux entries and input index at end of document
81        -makeglossaries -q -s ${basename $@}.ist ${basename $@}
82        # Make index from *.aux entries and input index at end of document
83        -makeindex ${basename $@}.idx
84        # Run again to finish citations
85        ${LaTeX} $<
86
87## Define the default recipes.
88
89${Build}:
90        mkdir -p ${Build}
91
92%.tex : fig/%.fig | ${Build}
93        fig2dev -L eepic $< > ${Build}/$@
94
95%.ps : fig/%.fig | ${Build}
96        fig2dev -L ps $< > ${Build}/$@
97
98%.pstex : fig/%.fig | ${Build}
99        fig2dev -L pstex $< > ${Build}/$@
100        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
101
102%.pstex : build/%.svg | ${Build}
103        inkscape -z -D --file=$< --export-eps=${Build}/$@ --export-latex
104        mv ${Build}/$@_tex ${Build}/$@_t
105        echo "sed -i 's/$@/${Build}/$@/g' ${Build}/$@_t"
106        sed -i 's/$@/${Build}\/$@/g' ${Build}/$@_t
107
108build/fairness.svg : fig/fairness.py | ${Build}
109        python3 $< $@
110
111## pstex with inverted colors
112%.dark.pstex : fig/%.fig Makefile | ${Build}
113        fig2dev -L pstex $< > ${Build}/$@
114        sed -i 's/\/col-1 {0 setgray} bind def/\/col-1 {1 setgray} bind def/g' ${Build}/$@
115        sed -i 's/\/col0 {0.000 0.000 0.000 srgb} bind def/\/col0 {1.000 1.000 1.000 srgb} bind def/g' ${Build}/$@
116        sed -i 's/\/col7 {1.000 1.000 1.000 srgb} bind def/\/col7 {0.000 0.000 0.000 srgb} bind def/g' ${Build}/$@
117        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
118
119# Local Variables: #
120# compile-command: "make" #
121# End: #
Note: See TracBrowser for help on using the repository browser.