Rename interpretor to interpreter.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / examples / faust-stk / Makefile.ladspacompile
diff --git a/interpreter/preprocessor/faust-0.9.47mr3/examples/faust-stk/Makefile.ladspacompile b/interpreter/preprocessor/faust-0.9.47mr3/examples/faust-stk/Makefile.ladspacompile
new file mode 100644 (file)
index 0000000..1ca0138
--- /dev/null
@@ -0,0 +1,24 @@
+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)