diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-06-06 22:39:51 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-06-06 22:39:51 +0000 |
commit | 0060c5e3213b60801346e9aadb2cb1523c7762b2 (patch) | |
tree | c96fc239a1e4d46abc09295019875618001b3744 /Makefile | |
parent | 2f76356218d772155f218efd2209613376e06440 (diff) |
- cleaned up CFLAGS and tried higher optimization, which failed to build
- implemented a second outlet which outputs data upon [refresh( to build a
popup menu to select the device by name using a [popup]. This uncovered a
bug, which is not fixed, it seems that everytime you open a device, that
device gets added again to the list of devices
svn path=/trunk/externals/hcs/hid/; revision=3122
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |