aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2011-11-16 13:54:56 +0000
committermusil <tmusil@users.sourceforge.net>2011-11-16 13:54:56 +0000
commit515814ab052cb9dc25466db5ef5d18e2dd5baef3 (patch)
treef4fd219fdcec69e0503952e7bb45da798cd4f8b3
parentf809b1eafbf62d579954248f6c48301ba17dc89b (diff)
change cc -O6 to cc -O2
svn path=/trunk/externals/iem/iem_tab/; revision=15760
-rw-r--r--src/makefile_linux9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/makefile_linux b/src/makefile_linux
index 6948b3d..b2f63b5 100644
--- a/src/makefile_linux
+++ b/src/makefile_linux
@@ -2,6 +2,8 @@ current: all
.SUFFIXES: .pd_linux
+#edit or define outside
+
PD_INCLUDE=/usr/local/src/pd/src
INCLUDE = -I. -I$(PD_INCLUDE)
@@ -12,14 +14,15 @@ LIB = -ldl -lm
#select either the DBG and OPT compiler flags below:
CFLAGS = -DPD -DUNIX -W -Wno-unused \
- -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing \
- -DDL_OPEN -fPIC
+ -Wno-parentheses -Wno-switch -O2 -funroll-loops -fomit-frame-pointer \
+ -fno-strict-aliasing -DDL_OPEN -fPIC
SYSTEM = $(shell uname -m)
# the sources
-SRC = tab_abs.c \
+SRC = \
+ tab_abs.c \
tab_add.c \
tab_add_scalar.c \
tab_carth2polar.c \