Rename interpretor to interpreter.
[Faustine.git] / interpretor / lib / src / libsndfile-ocaml / Makefile
diff --git a/interpretor/lib/src/libsndfile-ocaml/Makefile b/interpretor/lib/src/libsndfile-ocaml/Makefile
deleted file mode 100644 (file)
index 299214a..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-
-CC = gcc
-CFLAGS = -g -W -Wall -Werror
-
-OCAMLC = ocamlc
-OCAMLOPT = ocamlopt
-OCAMLDEP = ocamldep
-OCAMLDOC = ocamldoc
-
-SNDFILE_CFLAGS = $(shell pkg-config --cflags sndfile)
-SNDFILE_LIBS = $(shell pkg-config --libs sndfile)
-
-OCAML_CFLAGS = -I /usr/lib/ocaml/$(shell ocamlopt -version)
-
-LIBSNDFILE = -ccopt -L/home/erikd/Local/lib -cclib -lsndfile -cclib -lm
-
-all: sndfile.cma sndfile.cmxa
-
-sndfile.cma: sndfile.ml sndfile.cmi sndfile_stub.o
-       $(OCAMLC) -c sndfile.ml
-       $(OCAMLC) -a -o $@  -custom sndfile_stub.o sndfile.cmo $(LIBSNDFILE)
-
-
-sndfile.cmxa: sndfile.ml sndfile.cmi sndfile_stub.o
-       $(OCAMLOPT) -c sndfile.ml
-       $(OCAMLOPT) -a -o $@  sndfile.cmx sndfile_stub.o $(LIBSNDFILE)
-
-Sndfile.html: sndfile.mli sndfile.cmi
-       $(OCAMLDOC) -stars -html -colorize-code $<
-
-
-sndfile_stub.o: sndfile_stub.c
-       $(CC) $(CFLAGS) $(SNDFILE_CFLAGS) $(OCAML_CFLAGS) -c $<
-
-sndfile_stub.e: sndfile_stub.c
-       $(CC) $(CFLAGS) -E $(SNDFILE_CFLAGS) $(OCAML_CFLAGS) -c $< > $@
-
-%.cmi: %.mli
-       $(OCAMLC) -c $<
-
-
-depend: sndfile.ml sndfile.mli
-       $(OCAMLDEP) *.mli *.ml > .depend
-
-.depend: sndfile.ml sndfile.mli
-       $(OCAMLDEP) *.mli *.ml > .depend
-
-include .depend
-
-########################################################################
-
-test_sndfile: sndfile.cma test_sndfile.ml
-       $(OCAMLC) -o $@ sndfile.cma test_sndfile.ml
-
-test_sndfile.opt: sndfile.cmxa test_sndfile.ml
-       $(OCAMLOPT) -o $@ sndfile.cmxa test_sndfile.ml
-
-check : test_sndfile test_sndfile.opt
-       ./test_sndfile
-       ./test_sndfile.opt
-
-########################################################################
-
-clean:
-       rm -f *~ .*~ *.o *.cm[aiox] *.cmxa *.a *.so test_sndfile test_sndfile.opt
-       @ find . -type f -perm +u=x -exec rm -f {} \;
-       @ rm -f *.html *.css