aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/buildsys/win
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-01-07 04:58:47 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-01-07 04:58:47 +0000
commitdad0b0542c08240f4431a34d46e6676461e0d83b (patch)
tree1d4ce3ce8cfe60caec560d0514f6eb4c08defcc3 /externals/grill/flext/buildsys/win
parented4ce25dc69fd6361f7655a3ab5d05186754316c (diff)
updated for OSX
better templates, some minor changes fix for showing attributes on select (and recreate the object on edit) cleanups svn path=/trunk/; revision=2469
Diffstat (limited to 'externals/grill/flext/buildsys/win')
-rw-r--r--externals/grill/flext/buildsys/win/bmake-bcc.inc2
-rw-r--r--externals/grill/flext/buildsys/win/gnumake-cygwin.inc5
-rw-r--r--externals/grill/flext/buildsys/win/gnumake-mingw.inc5
-rw-r--r--externals/grill/flext/buildsys/win/max/config-mingw.def10
-rw-r--r--externals/grill/flext/buildsys/win/nmake-msvc.inc2
-rw-r--r--externals/grill/flext/buildsys/win/pd/config-bcc.def4
-rw-r--r--externals/grill/flext/buildsys/win/pd/config-cygwin.def8
-rw-r--r--externals/grill/flext/buildsys/win/pd/config-mingw.def8
-rw-r--r--externals/grill/flext/buildsys/win/pd/config-msvc.def6
9 files changed, 40 insertions, 10 deletions
diff --git a/externals/grill/flext/buildsys/win/bmake-bcc.inc b/externals/grill/flext/buildsys/win/bmake-bcc.inc
index e852ea9a..131dc61e 100644
--- a/externals/grill/flext/buildsys/win/bmake-bcc.inc
+++ b/externals/grill/flext/buildsys/win/bmake-bcc.inc
@@ -28,6 +28,8 @@ LDFLAGS=$(LDFLAGS) /C /Tpd
##############################################
+CFLAGS=$(CFLAGS) $(UFLAGS)
+
!ifdef DEBUG
CFLAGS=$(CFLAGS) -v -D_DEBUG
LDFLAGS=$(LDFLAGS) /v
diff --git a/externals/grill/flext/buildsys/win/gnumake-cygwin.inc b/externals/grill/flext/buildsys/win/gnumake-cygwin.inc
index 55022c36..70a4601e 100644
--- a/externals/grill/flext/buildsys/win/gnumake-cygwin.inc
+++ b/externals/grill/flext/buildsys/win/gnumake-cygwin.inc
@@ -6,10 +6,13 @@ TARGET=$(TARGETPATH)/$(OUTNAME).$(EXT)
##############################################
-LDFLAGS += -shared
+CFLAGS += -pthread
+LDFLAGS += -pthread -shared
##############################################
+CFLAGS += $(UFLAGS)
+
ifdef DEBUG
CFLAGS += -g -D_DEBUG
else
diff --git a/externals/grill/flext/buildsys/win/gnumake-mingw.inc b/externals/grill/flext/buildsys/win/gnumake-mingw.inc
index d32f93e6..1bb72d6b 100644
--- a/externals/grill/flext/buildsys/win/gnumake-mingw.inc
+++ b/externals/grill/flext/buildsys/win/gnumake-mingw.inc
@@ -6,10 +6,13 @@ TARGET=$(TARGETPATH)\$(OUTNAME).$(EXT)
##############################################
-LDFLAGS += -shared
+CFLAGS += -pthread
+LDFLAGS += -pthread -shared
##############################################
+CFLAGS += $(UFLAGS)
+
ifdef DEBUG
CFLAGS += -g -D_DEBUG
else
diff --git a/externals/grill/flext/buildsys/win/max/config-mingw.def b/externals/grill/flext/buildsys/win/max/config-mingw.def
index 2727fce6..d3deb574 100644
--- a/externals/grill/flext/buildsys/win/max/config-mingw.def
+++ b/externals/grill/flext/buildsys/win/max/config-mingw.def
@@ -31,8 +31,12 @@ HELPPATH="%ProgramFiles%/MaxMSP 4.5/max-help/flext"
###############################################################
-# some user-definable flags
+# user defined compiler flags
# (check if they match your system!)
-OFLAGS=-O2
+UFLAGS=-msse
+
+# user defined optimization flags
+# (check if they match your system!)
+OFLAGS=-O3
# optimizations for Pentium 4
-#OFLAGS += -march=pentium4 -msse
+OFLAGS+=-march=pentium4
diff --git a/externals/grill/flext/buildsys/win/nmake-msvc.inc b/externals/grill/flext/buildsys/win/nmake-msvc.inc
index b8a51425..b1fe1acc 100644
--- a/externals/grill/flext/buildsys/win/nmake-msvc.inc
+++ b/externals/grill/flext/buildsys/win/nmake-msvc.inc
@@ -30,6 +30,8 @@ LDFLAGS=$(LDFLAGS) /nologo
##############################################
+CFLAGS=$(CFLAGS) $(UFLAGS)
+
!ifdef DEBUG
CFLAGS=$(CFLAGS) /D_DEBUG
diff --git a/externals/grill/flext/buildsys/win/pd/config-bcc.def b/externals/grill/flext/buildsys/win/pd/config-bcc.def
index e473c6a7..97553013 100644
--- a/externals/grill/flext/buildsys/win/pd/config-bcc.def
+++ b/externals/grill/flext/buildsys/win/pd/config-bcc.def
@@ -27,4 +27,8 @@ INSTPATH=$(PDPATH)\extra
# user defined compiler flags
# (check if they match your system!)
+UFLAGS=
+
+# user defined optimization flags
+# (check if they match your system!)
OFLAGS=-6 -O2 -OS -ff -d
diff --git a/externals/grill/flext/buildsys/win/pd/config-cygwin.def b/externals/grill/flext/buildsys/win/pd/config-cygwin.def
index 980ebc77..3a7098ee 100644
--- a/externals/grill/flext/buildsys/win/pd/config-cygwin.def
+++ b/externals/grill/flext/buildsys/win/pd/config-cygwin.def
@@ -24,6 +24,10 @@ INSTPATH=$(PDPATH)/extra
# user defined compiler flags
# (check if they match your system!)
-OFLAGS=-O2
+UFLAGS=-msse
+
+# user defined optimization flags
+# (check if they match your system!)
+OFLAGS=-O3
# optimizations for Pentium 4
-#OFLAGS += -march=pentium4 -msse
+OFLAGS+=-march=pentium4
diff --git a/externals/grill/flext/buildsys/win/pd/config-mingw.def b/externals/grill/flext/buildsys/win/pd/config-mingw.def
index 9a65dfd9..6bd5b718 100644
--- a/externals/grill/flext/buildsys/win/pd/config-mingw.def
+++ b/externals/grill/flext/buildsys/win/pd/config-mingw.def
@@ -24,6 +24,10 @@ INSTPATH=$(PDPATH)\extra
# user defined compiler flags
# (check if they match your system!)
-OFLAGS=-O2
+UFLAGS=-msse
+
+# user defined optimization flags
+# (check if they match your system!)
+OFLAGS=-O3
# optimizations for Pentium 4
-#OFLAGS += -march=pentium4 -msse
+OFLAGS+=-march=pentium4
diff --git a/externals/grill/flext/buildsys/win/pd/config-msvc.def b/externals/grill/flext/buildsys/win/pd/config-msvc.def
index 7d808765..830eead3 100644
--- a/externals/grill/flext/buildsys/win/pd/config-msvc.def
+++ b/externals/grill/flext/buildsys/win/pd/config-msvc.def
@@ -29,9 +29,13 @@ INSTPATH=$(PDPATH)\extra
# user defined compiler flags
# (check if they match your system!)
+UFLAGS=
+
+# user defined optimization flags
+# (check if they match your system!)
OFLAGS=/Ox
# optimizations for Pentium 4
-#OFLAGS=$(OFLAGS) /G6 /arch:SSE
+OFLAGS=$(OFLAGS) /G6 /arch:SSE
# uncomment to link against dynamic C runtime libraries
# (don't use this if you want to distribute the built product)