Rename interpretor to interpreter.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / documentation / faust-quick-reference-src / illustrations / Makefile
1 src := $(wildcard *.dot)
2 dst := $(src:.dot=.pdf)
3
4 dsp := $(wildcard *.dsp)
5 png := $(dsp:.dsp=.png)
6
7 all : $(dst) $(png)
8
9 %.pdf : %.dot
10 dot -Tpdf -o $@ $<
11
12 %.png : %.dsp
13 faust2png $<
14 cp $(<)-png/process.png $@
15