From 9c5b12f513dc7631af9d8c4bdee302c25aa4382d Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Thu, 22 Dec 2005 23:46:17 +0000 Subject: add config files for the flext build system svn path=/trunk/externals/tb/; revision=4288 --- sndfiler/build/config-lnx.def | 1 + sndfiler/build/config-mac.def | 1 + sndfiler/build/config-win.def | 5 +++++ sndfiler/build/gnumake-lnx-gcc.inc | 1 + sndfiler/build/gnumake-mac-gcc.inc | 1 + sndfiler/build/gnumake-win-cygwin.inc | 3 +++ sndfiler/build/gnumake-win-mingw.inc | 3 +++ sndfiler/build/nmake-win-msvc.inc | 3 +++ sndfiler/package.txt | 4 ++++ 9 files changed, 22 insertions(+) create mode 100644 sndfiler/build/config-lnx.def create mode 100644 sndfiler/build/config-mac.def create mode 100644 sndfiler/build/config-win.def create mode 100644 sndfiler/build/gnumake-lnx-gcc.inc create mode 100644 sndfiler/build/gnumake-mac-gcc.inc create mode 100644 sndfiler/build/gnumake-win-cygwin.inc create mode 100644 sndfiler/build/gnumake-win-mingw.inc create mode 100644 sndfiler/build/nmake-win-msvc.inc create mode 100644 sndfiler/package.txt diff --git a/sndfiler/build/config-lnx.def b/sndfiler/build/config-lnx.def new file mode 100644 index 0000000..fc37b7e --- /dev/null +++ b/sndfiler/build/config-lnx.def @@ -0,0 +1 @@ +# nothing to set diff --git a/sndfiler/build/config-mac.def b/sndfiler/build/config-mac.def new file mode 100644 index 0000000..fc37b7e --- /dev/null +++ b/sndfiler/build/config-mac.def @@ -0,0 +1 @@ +# nothing to set diff --git a/sndfiler/build/config-win.def b/sndfiler/build/config-win.def new file mode 100644 index 0000000..bd7bf72 --- /dev/null +++ b/sndfiler/build/config-win.def @@ -0,0 +1,5 @@ +# where is the libsndfile installation? +SNDFILEPATH=%programfiles%\libsndfile + +SNDFILEINC=$(SNDFILEPATH)\src +SNDFILELIB=$(SNDFILEPATH) diff --git a/sndfiler/build/gnumake-lnx-gcc.inc b/sndfiler/build/gnumake-lnx-gcc.inc new file mode 100644 index 0000000..3314475 --- /dev/null +++ b/sndfiler/build/gnumake-lnx-gcc.inc @@ -0,0 +1 @@ +LIBS += -lsndfile diff --git a/sndfiler/build/gnumake-mac-gcc.inc b/sndfiler/build/gnumake-mac-gcc.inc new file mode 100644 index 0000000..3314475 --- /dev/null +++ b/sndfiler/build/gnumake-mac-gcc.inc @@ -0,0 +1 @@ +LIBS += -lsndfile diff --git a/sndfiler/build/gnumake-win-cygwin.inc b/sndfiler/build/gnumake-win-cygwin.inc new file mode 100644 index 0000000..3b7c000 --- /dev/null +++ b/sndfiler/build/gnumake-win-cygwin.inc @@ -0,0 +1,3 @@ +INCPATH += -I$(SNDFILEINC) +LIBPATH += -L$(SNDFILELIB) +LIBS += -lsndfile diff --git a/sndfiler/build/gnumake-win-mingw.inc b/sndfiler/build/gnumake-win-mingw.inc new file mode 100644 index 0000000..3b7c000 --- /dev/null +++ b/sndfiler/build/gnumake-win-mingw.inc @@ -0,0 +1,3 @@ +INCPATH += -I$(SNDFILEINC) +LIBPATH += -L$(SNDFILELIB) +LIBS += -lsndfile diff --git a/sndfiler/build/nmake-win-msvc.inc b/sndfiler/build/nmake-win-msvc.inc new file mode 100644 index 0000000..9b832cc --- /dev/null +++ b/sndfiler/build/nmake-win-msvc.inc @@ -0,0 +1,3 @@ +INCPATH=$(INCPATH) /I$(SNDFILEINC) +LIBPATH=$(LIBPATH) /LIBPATH:$(SNDFILELIB) +LIBS=$(LIBS) libsndfile.lib diff --git a/sndfiler/package.txt b/sndfiler/package.txt new file mode 100644 index 0000000..8f4281e --- /dev/null +++ b/sndfiler/package.txt @@ -0,0 +1,4 @@ +NAME=sndfiler +SRCDIR=src +SRCS=sndfiler.c +BUILDDIR=build -- cgit v1.2.1