X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/1059e1cc0c2ecfa237406949aa26155b6a5b9154:/interpretor/lib/Makefile..66f23d4fabf89ad09adbd4dfc15ac6b5b2b7da83:/interpreter/lib/static/git-favicon.png diff --git a/interpretor/lib/Makefile b/interpretor/lib/Makefile deleted file mode 100644 index 5c8d5ad..0000000 --- a/interpretor/lib/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# Faustine library dependancies Makefile. - -LIBSNDFILE_SRCDIR ?= src/libsndfile-1.0.25 -LIBSFOCAML_SRCDIR ?= src/libsndfile-ocaml -LIBSNDFILE_DESTNAME ?= libsndfile -DESTDIR := $(abspath .)/$(LIBSNDFILE_DESTNAME) - -all: librairies - -librairies : libsndfile libsfocaml - -libsndfile: - $(MAKE) -C $(LIBSNDFILE_SRCDIR) - $(MAKE) -C $(LIBSNDFILE_SRCDIR) install - -libsfocaml: - cd $(LIBSFOCAML_SRCDIR) && PKG_CONFIG_PATH=$(DESTDIR)/lib/pkgconfig - $(MAKE) -C $(LIBSFOCAML_SRCDIR) depend - $(MAKE) -C $(LIBSFOCAML_SRCDIR) - -.PHONY: clean mrproper help libsndfile libsfocaml - -help : - @echo "make or make all : compile librairies" - @echo "make clean : remove all object files" - -clean: - @(rm -f *~) - -mrproper: clean - rm -rf $(DESTDIR) - @($(MAKE) -C $(LIBSNDFILE_SRCDIR) clean) - @($(MAKE) -C $(LIBSFOCAML_SRCDIR) clean)