New directory tree, with preprocessor/ inside interpretor/.
[Faustine.git] / interpretor / faust-0.9.47mr3 / examples / Makefile.qcompile
diff --git a/interpretor/faust-0.9.47mr3/examples/Makefile.qcompile b/interpretor/faust-0.9.47mr3/examples/Makefile.qcompile
deleted file mode 100644 (file)
index 9a12af2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-DEST   := qdir/
-dspsrc  := $(wildcard *.dsp)
-cppsrc  := $(addprefix $(DEST), $(dspsrc:.dsp=.cpp))
-modules        := $(addprefix $(DEST),  $(dspsrc:%.dsp=%.so))
-
-###allcpp: $(cppsrc)
-
-allmodules: $(modules)
-
-$(DEST)%.so: $(DEST)%.cpp
-       $(CXX) -shared -O3 $(CXXFLAGS) -Dmydsp=$(patsubst %.so,%,$(notdir $@)) $< -o $@
-
-$(DEST)%.cpp: %.dsp 
-       faust $(VEC) -a q.cpp $< -o $@
-
-clean:
-       rm -rf $(DEST)