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