Rename interpretor to interpreter.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / documentation / faust-quick-reference-src / graphs / faustflow.dot
1
2 strict digraph faustflow {
3 root=dsp;
4 dsp[label="fx.dsp"];
5 cpp[label="fx.cpp"];
6 pd[label="fx.pd"];
7 xml[label="fx.xml"];
8 bin[label="fx~.pd_linux"];
9 arch[label="puredata.cpp"];
10 svgfolder[shape=box, label="fx.dsp-svg/"];
11 svg[label="process.svg"];
12
13 node[shape=box, color=blue, fillcolor=lightblue, style=filled];
14 FAUST[label="faust"];
15 GCC[label="g++", shape=box, color=blue, fillcolor=lightblue, style=filled];
16 F2PD[label="faust2pd", shape=box, color=blue, fillcolor=lightblue, style=filled];
17
18 FAUST->svgfolder[label="-svg",weight=5];
19 svgfolder->svg;
20
21 dsp->FAUST[weight=10];
22 FAUST->cpp[label="-o",weight=10];
23 cpp->GCC[weight=10];
24 GCC->bin[weight=10];
25
26 arch->FAUST[label="-a"]; {rank=same; arch FAUST}
27
28
29 FAUST->xml[label="-xml"];
30 xml->F2PD->pd;
31
32 }