source: doc/proposals/concurrency/Makefile@ 8ca3a72

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 8ca3a72 was ff98952, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Updated draft up to 3.4

  • Property mode set to 100644
File size: 2.8 KB
Line 
1## Define the appropriate configuration variables.
2
3TeXLIB = .:./style:./text:./annex:./build:../../LaTeXmacros:../../LaTeXmacros/listings:../../LaTeXmacros/enumitem:~/bibliographies:
4LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=build -interaction=nonstopmode
5BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex -terse
6
7## Define the text source files.
8
9SOURCES = ${addsuffix .tex, \
10thesis \
11style/style \
12style/cfa-format \
13annex/glossary \
14text/intro \
15text/basics \
16text/concurrency \
17text/parallelism \
18}
19
20FIGURES = ${addprefix build/, ${addsuffix .tex, \
21 monitor \
22 ext_monitor \
23}}
24
25PICTURES = ${addsuffix .pstex, \
26}
27
28PROGRAMS = ${addsuffix .tex, \
29}
30
31GRAPHS = ${addsuffix .tex, \
32}
33
34## Define the documents that need to be made.
35
36DOCUMENT = thesis.pdf
37
38# Directives #
39
40all : ${DOCUMENT}
41
42clean :
43 @rm -fv ${DOCUMENT} \
44 build/*.acn \
45 build/*.acr \
46 build/*.alg \
47 build/*.aux \
48 build/*.bbl \
49 build/*.blg \
50 build/*.brf \
51 build/*.cf \
52 build/*.dvi \
53 build/*.glg \
54 build/*.glo \
55 build/*.gls \
56 build/*.ist \
57 build/*.idx \
58 build/*.ilg \
59 build/*.ind \
60 build/*.log \
61 build/*.out \
62 build/*.ps \
63 build/*.pstex_t \
64 build/*.tex \
65 build/*.toc \
66
67
68# File Dependencies #
69
70${DOCUMENT} : build/${basename ${DOCUMENT}}.ps
71 ps2pdf $<
72
73build/${basename ${DOCUMENT}}.ps : build/${basename ${DOCUMENT}}.dvi
74 dvips $< -o $@
75
76build/${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex ../../LaTeXmacros/common.tex ../../LaTeXmacros/indexstyle
77
78 @ if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
79 @ echo "Citation lookup" # Must have *.aux file containing citations for bibtex
80 @ if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename ${notdir $@}}.tex ; fi
81 @ echo "Citation Pass 1"
82 @ -${BibTeX} ${basename $@} # Some citations reference others so run steps again to resolve these citations
83 @ echo "Citation Pass 2"
84 @ ${LaTeX} ${basename ${notdir $@}}.tex
85 @ -${BibTeX} ${basename $@}
86 @ echo "Glossary"
87 makeglossaries -q -s ${basename $@}.ist ${basename $@} # Make index from *.aux entries and input index at end of document
88 @ echo ".dvi generation"
89 @ -build/bump_ver.sh
90 @ ${LaTeX} ${basename ${notdir $@}}.tex # Run again to get index title into table of contents
91
92
93predefined :
94 sed -f predefined.sed ${basename ${DOCUMENT}}.tex > ${basename $@}.cf
95
96## Define the default recipes.
97
98build/%.tex : figures/%.fig
99 fig2dev -L eepic $< > $@
100
101build/%.ps : figures/%.fig
102 fig2dev -L ps $< > $@
103
104build/%.pstex : figures/%.fig
105 fig2dev -L pstex $< > $@
106 fig2dev -L pstex_t -p $@ $< > $@_t
107
108
109# Local Variables: #
110# compile-command: "make" #
111# End: #
Note: See TracBrowser for help on using the repository browser.