projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3c7425a9408c71ef2a04b8e2b4d47c81c493149b
[Faustine.git]
/
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