diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-22 04:13:14 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-22 04:13:14 +0000 |
commit | 5975fb802a87775c180c6132f08a12765cc726de (patch) | |
tree | 9a6bb8dab77e54ccfbe65359795cb886052e2aa3 | |
parent | 1eb17bf656994d038524cae2c8033105c3058b52 (diff) |
everything is building, the element array is being properly populated, I just need to fix the data output to use the new element array
svn path=/trunk/; revision=5706
-rw-r--r-- | externals/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/externals/Makefile b/externals/Makefile index a3bc725e..a031e448 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -121,7 +121,7 @@ else LIB_TARGETS += hid else # GNU/Linux, BSD, IRIX, etc. - LIB_TARGETS += + LIB_TARGETS += hid endif endif @@ -929,10 +929,12 @@ $(HID_OBJECTS) : %.o : %.c $(HID_UTILITIES_SOURCE)/build/libHIDUtilities.a: # Apple changed the XCode CLI tool's name in xcode2... arg # if on non-Mac OS X, this target just echos a message +ifeq ($(UNAME),Darwin) cd $(HID_UTILITIES_SOURCE) && \ (test -x /usr/bin/xcodebuild && /usr/bin/xcodebuild) || \ (test -x /usr/bin/pbxbuild && /usr/bin/pbxbuild) || \ echo "Not building Apple HID Utilities" +endif $(externals_src)/hcs/hid/hid.$(EXTENSION): $(HID_OBJECTS) \ $(HID_UTILITIES_SOURCE)/build/libHIDUtilities.a |