projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add /usr/local/lib/faustine and /usr/lib/faustine to preprocessor import path.
[Faustine.git]
/
interpretor
/
preprocessor
/
faust-0.9.47mr3
/
benchmark
/
Makefile.compile
1
dspsrc := $(wildcard *.dsp)
2
cppsrc := $(addprefix $(DEST), $(dspsrc:.dsp=.cpp))
3
appl := $(addprefix $(DEST), $(dspsrc:.dsp=$(EXT)))
4
5
6
all : $(appl)
7
8
9
$(DEST)%$(EXT) : %.dsp
10
faust $(VEC) -a $(ARCH) $< -o $@.cpp
11
$(CXX) -O3 $(CXXFLAGS) $@.cpp $(LIB) -o $@
12
13
14
clean :
15
rm -f $(DEST)