source: doc/theses/colby_parsons_MMAth/Makefile@ c5e2a84

Last change on this file since c5e2a84 was 14e1053, checked in by caparsons <caparson@…>, 3 years ago

first draft of full waituntil chapter and conclusion chapter. Lots of graph/plotting utilities cleanup. Reran all CFA actor benchmarks after recent changes. Small changes to actor.tex in performance section

  • Property mode set to 100644
File size: 4.6 KB
Line 
1## Define the configuration variables.
2
3Build = build
4Figures = figures
5Macros = ../../LaTeXmacros
6TeXLIB = .:style:text:${Macros}:${Build}:../../bibliography:
7LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
8BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex -terse
9
10MAKEFLAGS = --no-print-directory --silent #
11VPATH = ${Build} ${Figures}
12
13## Define the text source files.
14
15SOURCES = ${addsuffix .tex, \
16 text/intro \
17 text/CFA_intro \
18 text/actors \
19 text/frontpgs \
20 text/CFA_concurrency \
21 thesis \
22 text/mutex_stmt \
23 text/channels \
24 text/waituntil \
25}
26
27FIGURES = ${addsuffix .pgf, \
28 figures/pykeExecutor \
29 figures/pykeCFAExecutor \
30 figures/nasusExecutor \
31 figures/nasusCFAExecutor \
32 figures/pykeMatrix \
33 figures/pykeCFAMatrix \
34 figures/nasusMatrix \
35 figures/nasusCFAMatrix \
36 figures/pykeRepeat \
37 figures/pykeCFARepeat \
38 figures/nasusRepeat \
39 figures/nasusCFARepeat \
40 figures/pykeCFABalance-One \
41 figures/nasusCFABalance-One\
42 figures/pykeCFABalance-Multi \
43 figures/nasusCFABalance-Multi \
44 figures/pyke_Aggregate_Lock_2 \
45 figures/pyke_Aggregate_Lock_4 \
46 figures/pyke_Aggregate_Lock_8 \
47 figures/nasus_Aggregate_Lock_2 \
48 figures/nasus_Aggregate_Lock_4 \
49 figures/nasus_Aggregate_Lock_8 \
50 figures/nasus_Channel_Contention \
51 figures/pyke_Channel_Contention \
52 figures/pyke_Future \
53 figures/nasus_Future \
54 figures/pyke_Contend_2 \
55 figures/pyke_Contend_4 \
56 figures/pyke_Contend_8 \
57 figures/pyke_Spin_2 \
58 figures/pyke_Spin_4 \
59 figures/pyke_Spin_8 \
60 figures/nasus_Contend_2 \
61 figures/nasus_Contend_4 \
62 figures/nasus_Contend_8 \
63 figures/nasus_Spin_2 \
64 figures/nasus_Spin_4 \
65 figures/nasus_Spin_8 \
66}
67
68DATA = data/pykeSendStatic \
69 data/pykeSendDynamic \
70 data/pykeExecutorMem \
71 data/nasusSendStatic \
72 data/nasusSendDynamic \
73 data/pykeExecutorMem \
74 data/nasus_Order \
75 data/pyke_Order \
76
77PICTURES = ${addsuffix .tikz, \
78 diagrams/standard_actor \
79 diagrams/inverted_actor \
80 diagrams/gulp \
81 diagrams/chain_swap \
82 diagrams/M_to_one_swap \
83 diagrams/acyclic_swap \
84 diagrams/cyclic_swap \
85}
86
87PROGRAMS = ${addsuffix .tex, \
88}
89
90GRAPHS = ${addsuffix .tex, \
91}
92
93## Define the documents that need to be made.
94
95DOCUMENT = thesis.pdf
96BASE = ${basename ${DOCUMENT}}
97
98# Directives #
99
100.PHONY : all clean # not file names
101
102all : ${DOCUMENT}
103
104clean :
105 @rm -frv ${DOCUMENT} ${BASE}.ps ${Build}
106
107# File Dependencies #
108
109${DOCUMENT} : ${BASE}.ps
110 ps2pdf $<
111
112${BASE}.ps : ${BASE}.dvi
113 dvips ${Build}/$< -o $@
114
115${BASE}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${DATA} \
116 glossary.tex style/style.tex ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle local.bib ../../bibliography/pl.bib | ${Build}
117 # Must have *.aux file containing citations for bibtex
118 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
119 -${BibTeX} ${Build}/${basename $@}
120 # Some citations reference others so run again to resolve these citations
121# ${LaTeX} ${basename $@}.tex
122# -${BibTeX} ${Build}/${basename $@}
123 # Make index from *.aux entries and input index at end of document
124 makeglossaries -q -s ${Build}/${basename $@}.ist ${Build}/${basename $@}
125 # Run again to finish citations
126 ${LaTeX} ${basename $@}.tex
127
128## Define the default recipes.
129
130${Build} :
131 mkdir -p ${Build}
132
133# The following rules are currently unused but could be used later
134# if we want to swap figures to be .pngs
135# %.tex : %.fig ${Build}
136# fig2dev -L eepic $< > ${Build}/$@
137
138# %.ps : %.fig | ${Build}
139# fig2dev -L ps $< > ${Build}/$@
140
141# %.pstex : %.fig | ${Build}
142# fig2dev -L pstex $< > ${Build}/$@
143# fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
144
145# #-----------------------------------------------------------------------------------
146# # Tools to generate png files
147# # to create a png we create a pdf and convert it to png
148# %.png : build/%.pstex figures/%.tex ${Build}
149# echo ${basename $@}
150# ${LaTeX} figures/${basename $@}.tex
151# dvips build/${basename $@}.dvi -o build/${basename $@}.ps
152# ps2pdf build/${basename $@}.ps
153# convert -negate ${basename $@}.pdf $@
154
155# creating a pdf of a figure requires generating some latex that just includes the figure
156# figures/%.tex: build/%.pstex ${Build}
157# echo -n "\documentclass[preview]{standalone}\n" \
158# "\usepackage[T1]{fontenc}\n" \
159# "\usepackage[usenames]{color}\n" \
160# "\usepackage{graphicx}\n" \
161# "\usepackage{listings}\n" \
162# "\usepackage{xspace}\n" \
163# "\input{style}\n" \
164# "\\\\begin{document}\n" \
165# "{\\\\resizebox{3\\\\textwidth}{!}{\input{${basename ${notdir $@}}.pstex_t}}}\n" \
166# "\end{document}" > $@
167
168data/%: ;
169%.tikz: ;
170%.pgf: ;
171
172# Local Variables: #
173# compile-command: "make" #
174# End: #
Note: See TracBrowser for help on using the repository browser.