source: doc/proposals/concurrency/Makefile @ 9d48a17

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 9d48a17 was cf966b5, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Results need to be updated but otherwise, tentative final draft

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