]> git.llucax.com Git - z.facultad/75.00/presentacion.git/blob - Makefile
No mencionar pools de memoria
[z.facultad/75.00/presentacion.git] / Makefile
1
2 O := .tmp
3
4 R2B := ./rst2beamer.py
5 R2BTHEME := Frankfurt
6 R2BFLAGS :=  --halt=2 --lang es --codeblocks-use-pygments \
7         --input-encoding=utf-8 --output-encoding=utf-8 \
8         --overlaybullets= \
9         --theme $(R2BTHEME)
10 R2BFILTER := sed '/\\usepackage\[scaled=\.90\]{helvet}/d; \
11         s/\\usepackage\[utf8\]{inputenc}/\\usepackage[utf8x]{inputenc}/'
12
13 DOT := dot
14 DOTFLAGS :=
15
16 PDFLATEX := pdflatex
17 PDFLATEXFLAGS := -halt-on-error -file-line-error
18
19 PLOTS := stw pause time mem
20 PROGS := bigarr conalloc concpu mcore rnddata sbtree split \
21                 bh bisort em3d tsp voronoi dil
22
23 STATS := ./stats.py
24 TEMPLITE := ./templite.py
25
26 AWK := awk
27 EPSTOPDF := epstopdf
28 GNUPLOT := gnuplot
29
30 comma := ,
31
32 imgs := $O/img/mark-sweep-0.pdf \
33         $(patsubst %.dot,$O/%.pdf,$(wildcard img/mark-sweep-*.dot)) \
34         $(patsubst %,$O/img/norm-hist-%.pdf,$(PLOTS))
35
36 # Verbosity flag (empty show nice messages, non-empty use make messages)
37 # When used internal, $V expand to @ is nice messages should be printed, this
38 # way it's easy to add $V in front of commands that should be silenced when
39 # displaying the nice messages.
40 override V := $(if $V,,@)
41 # honour make -s flag
42 override V := $(if $(findstring s,$(MAKEFLAGS)),,$V)
43
44 targets := presentacion.pdf notas.pdf
45
46 .PHONY: all
47 all: $(targets)
48
49 %.pdf: $O/%.tex
50         $(if $V,@echo "$(PDFLATEX) $< > $@")
51         $V cd $O && $(PDFLATEX) $(PDFLATEXFLAGS) $(<F) $(if $V,> $@.log)
52         $V cd $O && $(PDFLATEX) $(PDFLATEXFLAGS) $(<F) $(if $V,>> $@.log)
53         $V mv $O/$@ $@
54
55 presentacion.pdf: $(imgs)
56
57 $O/%.tex: %.rst $(R2B)
58         $(if $V,@echo "$(R2B) $< > $@")
59         $V $(R2B) $(R2BFLAGS) $< | $(R2BFILTER) > $@
60
61 $O/notas.tex: R2BFLAGS += --shownotes=only
62
63 $O/img/%.pdf: img/%.dot
64         $(DOT) $(DOTFLAGS) -Tpdf -o $@ $<
65
66 $O/img/norm-hist-%.csv: img/raw-hist-%.csv
67         $(if $V,@echo "norm $< > $@")
68         $V $(AWK) -F, -v m=`cut -d, -f4 $< | $(STATS) '$$1' '%(max)s'` \
69                 '{print $$1 "," $$2/m "," $$3/m "," $$4/m "," $$5/m}' \
70                         $< > $@
71
72 $O/img/norm-hist-%.eps: $(patsubst %,$O/img/norm-hist-\%-%.csv,$(PROGS))
73         $(if $V,@echo "plot $< > $@")
74         $V $(TEMPLITE) "progs=($(patsubst %,'%'$(comma),$(PROGS))), " \
75                         "files=($(patsubst %,'%'$(comma),$^))" \
76                         < histogram-plot.tpl.gpi | $(GNUPLOT) > $@
77
78 $O/img/norm-hist-%.pdf: $O/img/norm-hist-%.eps
79         $(EPSTOPDF) --outfile=$@ $<
80
81 $O/img/%.pdf: img/%.pdf
82         cp $< $@
83
84 .PHONY: clean
85 clean:
86         $(RM) -r $O
87
88 .PHONY: clean-all
89 clean-all: clean
90         $(RM) $(targets)
91
92 __dummy := $(shell mkdir -p $O/img)