aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/makefile.pd-linux
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-01-07 04:38:10 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-01-07 04:38:10 +0000
commitb8510c87be3a74307f4ad6122d75a353d350b84c (patch)
tree3c95c81f6d239b3a892b362f624ac5290b91ef82 /externals/grill/flext/makefile.pd-linux
parent0182bbff2871114a4e93cc97942da621491f0e02 (diff)
""
svn path=/trunk/; revision=326
Diffstat (limited to 'externals/grill/flext/makefile.pd-linux')
-rw-r--r--externals/grill/flext/makefile.pd-linux16
1 files changed, 11 insertions, 5 deletions
diff --git a/externals/grill/flext/makefile.pd-linux b/externals/grill/flext/makefile.pd-linux
index c48d8466..6e1901bf 100644
--- a/externals/grill/flext/makefile.pd-linux
+++ b/externals/grill/flext/makefile.pd-linux
@@ -15,11 +15,17 @@ include $(CONFIG)
# compiler+linker stuff
INCLUDES=$(PDPATH) $(SNDOBJ) $(STK)
FLAGS=-DFLEXT_SYS=2
-CFLAGS=-O6 -fno-exceptions
-CFLAGS+=-mcpu=pentiumpro # gcc 2.95
-# CFLAGS+=-mcpu=pentium3 -msse # gcc 3.2
-CFLAGS_D=-mcpu=pentiumpro -g
-CFLAGS_T=-DFLEXT_THREADS
+
+# compiler flags for optimized build
+CFLAGS=$(UFLAGS) -O6 -fno-exceptions
+
+# compiler flags for debug build
+CFLAGS_D=$(UFLAGS) -g -fno-exceptions
+
+# additional flags for threading
+CFLAGS_T=-DFLEXT_THREADS
+
+# libraries
LIBS=
# ----------------------------------------------