aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6b55819..c454bdd 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,12 @@ endif
PDEXECUTABLE = ../../../pd/bin/pd
-CFLAGS = -DUNIX -DPD -O2 -funroll-loops -fomit-frame-pointer \
- -Wall -W -Wno-shadow -Wstrict-prototypes -Wno-unused
+# generic optimization
+OPT_FLAGS = -O3
+# G4 7450 optimization (gives errors)
+#OPT_FLAGS = -fast -mcpu=7450 -maltivec
+
+CFLAGS = $(OPT_FLAGS) -Wall -W -Wno-shadow -Wstrict-prototypes -Wno-unused
INCLUDE = -I./ -I../../../pd/src -I./HID\ Utilities\ Source