New directory tree, with preprocessor/ inside interpretor/.
[Faustine.git] / interpretor / faust-0.9.47mr3 / examples / faust-stk / Makefile.ladspacompile
diff --git a/interpretor/faust-0.9.47mr3/examples/faust-stk/Makefile.ladspacompile b/interpretor/faust-0.9.47mr3/examples/faust-stk/Makefile.ladspacompile
deleted file mode 100644 (file)
index 1ca0138..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-ARCH    := ladspa.cpp
-DEST   := ladspadir/
-dspsrc  := $(wildcard *.dsp)
-cppsrc  := $(addprefix $(DEST), $(dspsrc:.dsp=.cpp))
-modules        := $(addprefix $(DEST),  $(dspsrc:%.dsp=%.so))
-
-###allcpp: $(cppsrc)
-
-allmodules: $(modules)
-
-ifeq ($(system), Darwin)
-SHAREDFLAG := -bundle
-else
-SHAREDFLAG := -shared
-endif
-
-$(DEST)%.so: $(DEST)%.cpp
-       $(CXX) -I. -Wall $(LIB) -fPIC -DPIC $(SHAREDFLAG) $(CXXFLAGS) -Dmydsp=$(patsubst %.so,%,$(notdir $@)) $< -o $@
-
-$(DEST)%.cpp: %.dsp 
-       faust $(VEC) -a $(ARCH) $< -o $@
-
-clean:
-       rm -rf $(DEST)