First cleaning step in "dsp_files" directory.
[Faustine.git] / interpretor / 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)