]> git.llucax.com Git - z.facultad/75.00/presentacion.git/blob - Makefile
Simplificar Makefile
[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
12 DOT := dot
13 DOTFLAGS :=
14
15 PDFLATEX := pdflatex
16 PDFLATEXFLAGS := -halt-on-error -file-line-error
17
18 PLOTS := stw pause time mem
19 PROGS := bigarr conalloc concpu mcore rnddata sbtree split \
20                 bh bisort em3d tsp voronoi dil
21
22 STATS := ./stats.py
23 TEMPLITE := ./templite.py
24
25 AWK := awk
26 EPSTOPDF := epstopdf
27 GNUPLOT := gnuplot
28
29 comma := ,
30
31 imgs := $O/img/mark-sweep-0.pdf \
32         $(patsubst %.dot,$O/%.pdf,$(wildcard img/mark-sweep-*.dot)) \
33         $(patsubst %,$O/img/norm-hist-%.pdf,$(PLOTS))
34
35 # Verbosity flag (empty show nice messages, non-empty use make messages)
36 # When used internal, $V expand to @ is nice messages should be printed, this
37 # way it's easy to add $V in front of commands that should be silenced when
38 # displaying the nice messages.
39 override V := $(if $V,,@)
40 # honour make -s flag
41 override V := $(if $(findstring s,$(MAKEFLAGS)),,$V)
42
43 targets := presentacion.pdf notas.pdf
44
45 .PHONY: all
46 all: $(targets)
47
48 %.pdf: $O/%.tex
49         $(if $V,@echo "$(PDFLATEX) $< > $@")
50         $V cd $O && $(PDFLATEX) $(PDFLATEXFLAGS) $(<F) $(if $V,> $@.log)
51         $V cd $O && $(PDFLATEX) $(PDFLATEXFLAGS) $(<F) $(if $V,>> $@.log)
52         $V mv $O/$@ $@
53
54 presentacion.pdf: $(imgs)
55
56 $O/%.tex: %.rst $(R2B)
57         $(if $V,@echo "$(R2B) $< > $@")
58         $V $(R2B) $(R2BFLAGS) $< | $(R2BFILTER) > $@
59
60 $O/notas.tex: R2BFLAGS += --shownotes=only
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 .PHONY: clean
84 clean:
85         $(RM) -r $O
86
87 .PHONY: clean-all
88 clean-all: clean
89         $(RM) $(targets)
90
91 __dummy := $(shell mkdir -p $O/img)