diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-08-18 14:37:38 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-08-18 14:37:38 +0000 |
commit | eddaa7707b71a2d633aba918336f6f25e85f6ddf (patch) | |
tree | 994e82ae03b26d9448ea47f53e20818d06af6215 | |
parent | 43076d5fb4af0653ed08498336989fbfd81692e3 (diff) |
we are not quite ready yet to deal with Univeral builds, the fat binary flags were conflicted with the optimization flags
svn path=/trunk/; revision=10252
-rw-r--r-- | externals/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/Makefile b/externals/Makefile index 56a9c48a..ecd10c6d 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -281,10 +281,10 @@ AKA.WIIREMOTE_SRC := $(wildcard $(externals_src)/io/aka.wiiremote/*.c) AKA.WIIREMOTE_OBJECTS := $(AKA.WIIREMOTE_SRC:.c=.o) $(AKA.WIIREMOTE_OBJECTS) : %.o : %.c - $(CC) $(CFLAGS) $(FAT_FLAGS) -o "$*.o" -c "$*.c" + $(CC) $(CFLAGS) -o "$*.o" -c "$*.c" $(externals_src)/io/aka.wiiremote/akawiiremote.$(EXTENSION): $(AKA.WIIREMOTE_OBJECTS) - $(CC) $(FAT_FLAGS) $(LDFLAGS) -o $(externals_src)/io/aka.wiiremote/akawiiremote.$(EXTENSION) \ + $(CC) $(LDFLAGS) -o $(externals_src)/io/aka.wiiremote/akawiiremote.$(EXTENSION) \ $(AKA.WIIREMOTE_OBJECTS) -weak_framework IOBluetooth \ -weak_framework CoreFoundation # $(STRIP) $(externals_src)/io/aka.wiiremote/aka.wiiremote.$(EXTENSION) |