diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-03 05:00:31 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-03 05:00:31 +0000 |
commit | 1611d50c03d8f79560ffc3bc63c268894f411abc (patch) | |
tree | 33a751fe81ef62e3bb4104f82132d3bc43efcaa7 /externals/grill/flext/buildsys/lnx/pd | |
parent | 7873938d18daf4a94ca77eeb970457f89e679374 (diff) |
updated make system
build system for OSX
simplified make system
reconsidered flext::buffer:Update
added object construction and destruction flags
updated build system
svn path=/trunk/; revision=2447
Diffstat (limited to 'externals/grill/flext/buildsys/lnx/pd')
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/config-gcc.def | 22 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-ext.inc | 1 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-flext.inc | 6 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/gnumake-gcc.inc (renamed from externals/grill/flext/buildsys/lnx/pd/make-gcc.inc) | 6 |
4 files changed, 24 insertions, 11 deletions
diff --git a/externals/grill/flext/buildsys/lnx/pd/config-gcc.def b/externals/grill/flext/buildsys/lnx/pd/config-gcc.def index e60e92a4..a8f230a8 100644 --- a/externals/grill/flext/buildsys/lnx/pd/config-gcc.def +++ b/externals/grill/flext/buildsys/lnx/pd/config-gcc.def @@ -1,15 +1,27 @@ # where is the PD source package? -PDPATH=/usr/local/src/pd-0.38-0test10 +PDPATH=/usr/local/src/pd -# where should the external be installed? -INSTPATH=/usr/local/lib/pd/extra +############################################################### + +# where do/should the flext headers reside/be built? +FLEXTINC=/usr/local/include/flext + +# where do/should the flext static libraries reside/be built? +FLEXTLIB=/usr/local/lib + +# where do/should the flext shared libraries reside/be built? +FLEXTSHLIB=$(FLEXTLIB) -# where do the flext headers and libraries reside? -FLEXTPATH=/usr/local/lib/pd/flext +############################################################### # where should the external be built? OUTPATH=pd-linux +# where should the external be installed? +INSTPATH=/usr/local/lib/pd/extra + +############################################################### + # user defined compiler flags # (check if they match your system!) OFLAGS=-O2 -march=pentium4 -msse diff --git a/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-ext.inc b/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-ext.inc new file mode 100644 index 00000000..042ce60f --- /dev/null +++ b/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-ext.inc @@ -0,0 +1 @@ +EXT=pd_linux
diff --git a/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-flext.inc b/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-flext.inc new file mode 100644 index 00000000..b64ecc11 --- /dev/null +++ b/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc-flext.inc @@ -0,0 +1,6 @@ +ifdef SHARED
+EXT=so
+else
+EXT=a
+endif
+
diff --git a/externals/grill/flext/buildsys/lnx/pd/make-gcc.inc b/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc.inc index 3ae01ad0..2b27b02f 100644 --- a/externals/grill/flext/buildsys/lnx/pd/make-gcc.inc +++ b/externals/grill/flext/buildsys/lnx/pd/gnumake-gcc.inc @@ -2,9 +2,3 @@ DEFS += -DFLEXT_SYS=2 INCPATH += -I$(PDPATH)/src LIBPATH += -L$(PDPATH)/bin - -LDFLAGS += - -LIBS += - -EXT=pd_linux |