diff options
Diffstat (limited to 'externals/grill/flext/buildsys/lnx')
-rw-r--r-- | externals/grill/flext/buildsys/lnx/gnumake-gcc.inc | 18 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/gnumake-icc.inc | 18 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/config-gcc.def | 24 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/config-icc.def | 24 |
4 files changed, 84 insertions, 0 deletions
diff --git a/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc b/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc index a0d12ed1..39639d86 100644 --- a/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc +++ b/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc @@ -40,6 +40,24 @@ endif ############################################## +ifdef STK_INC +INCPATH += -I$(STK_INC) +endif +ifdef STK_LIB +LIBS += $(STK_LIB) +endif + +############################################## + +ifdef SNDOBJ_INC +INCPATH += -I$(SNDOBJ_INC) +endif +ifdef SNDOBJ_LIB +LIBS += $(SNDOBJ_LIB) +endif + +############################################## + CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS))) CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS))) COBJS=$(patsubst %.c,$(OBJPATH)/%.o,$(filter %.c,$(SRCS))) diff --git a/externals/grill/flext/buildsys/lnx/gnumake-icc.inc b/externals/grill/flext/buildsys/lnx/gnumake-icc.inc index 7e665db3..b95dd55a 100644 --- a/externals/grill/flext/buildsys/lnx/gnumake-icc.inc +++ b/externals/grill/flext/buildsys/lnx/gnumake-icc.inc @@ -40,6 +40,24 @@ endif ############################################## +ifdef STK_INC +INCPATH += -I$(STK_INC) +endif +ifdef STK_LIB +LIBS += $(STK_LIB) +endif + +############################################## + +ifdef SNDOBJ_INC +INCPATH += -I$(SNDOBJ_INC) +endif +ifdef SNDOBJ_LIB +LIBS += $(SNDOBJ_LIB) +endif + +############################################## + CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS))) CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS))) COBJS=$(patsubst %.c,$(OBJPATH)/%.o,$(filter %.c,$(SRCS))) diff --git a/externals/grill/flext/buildsys/lnx/pd/config-gcc.def b/externals/grill/flext/buildsys/lnx/pd/config-gcc.def index be09f6d8..e0340e77 100644 --- a/externals/grill/flext/buildsys/lnx/pd/config-gcc.def +++ b/externals/grill/flext/buildsys/lnx/pd/config-gcc.def @@ -21,6 +21,30 @@ INSTPATH=/usr/local/lib/pd/extra ############################################################### +# STK (synthesis tool kit) support +# http://ccrma.stanford.edu/software/stk + +# where to find the STK header files (e.g. stk.h) +STK_INC=/usr/local/include/stk + +# where to find the STK library (normally libstk.a) +# (comment out STK_LIB if you don't use STK) +#STK_LIB=/usr/local/lib/libstk.a + +############################################################### + +# SndObj support +# http://music.nuim.ie//musictec/SndObj + +# where to find the SndObj header files (e.g. sndobj.h) +SNDOBJ_INC=/usr/local/include/sndobj + +# where to find the SndObj library (normally libsndobj.a) +# (comment out STK_LIB if you don't use SndObj) +#SNDOBJ_LIB=/usr/local/lib/libsndobj.a + +############################################################### + # user defined compiler flags # (check if they match your system!) UFLAGS=-msse -mfpmath=sse -ffast-math diff --git a/externals/grill/flext/buildsys/lnx/pd/config-icc.def b/externals/grill/flext/buildsys/lnx/pd/config-icc.def index 526eba11..6032cfa2 100644 --- a/externals/grill/flext/buildsys/lnx/pd/config-icc.def +++ b/externals/grill/flext/buildsys/lnx/pd/config-icc.def @@ -21,6 +21,30 @@ INSTPATH=/usr/local/lib/pd/extra ############################################################### +# STK (synthesis tool kit) support +# http://ccrma.stanford.edu/software/stk + +# where to find the STK header files (e.g. stk.h) +STK_INC=/usr/local/include/stk + +# where to find the STK library (normally libstk.a) +# (comment out STK_LIB if you don't use STK) +#STK_LIB=/usr/local/lib/libstk.a + +############################################################### + +# SndObj support +# http://music.nuim.ie//musictec/SndObj + +# where to find the SndObj header files (e.g. sndobj.h) +SNDOBJ_INC=/usr/local/include/sndobj + +# where to find the SndObj library (normally libsndobj.a) +# (comment out STK_LIB if you don't use SndObj) +#SNDOBJ_LIB=/usr/local/lib/libsndobj.a + +############################################################### + # user defined compiler flags # (check if they match your system!) UFLAGS= |