Rename interpretor to interpreter.
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / examples / faust-stk / Makefile.compile
diff --git a/interpretor/preprocessor/faust-0.9.47mr3/examples/faust-stk/Makefile.compile b/interpretor/preprocessor/faust-0.9.47mr3/examples/faust-stk/Makefile.compile
deleted file mode 100644 (file)
index 7f7b44b..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-dspsrc  := $(wildcard *.dsp)
-cppsrc  := $(addprefix $(DEST), $(dspsrc:.dsp=.cpp))
-appl   := $(addprefix $(DEST), $(dspsrc:.dsp=$(EXT)))
-
-
-all :  $(appl)
-
-
-$(DEST)%$(EXT) : %.dsp 
-       faust $(VEC) -a $(ARCH) $< -o $@.cpp
-       $(CXX) -O3 $(CXXFLAGS) -I $(PWD) $(LIB) $@.cpp -o $@
-       
-
-clean :
-       rm -f $(DEST)