Changeset 3496
- Timestamp:
- 01/13/06 19:31:11 (2 years ago)
- Files:
-
- WiredServer/trunk/WiredServer.xcodeproj/project.pbxproj (modified) (5 diffs)
- WiredServer/trunk/wired.sh (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredServer/trunk/WiredServer.xcodeproj/project.pbxproj
r3485 r3496 28 28 }; 29 29 dependencies = ( 30 77B7C33F0973FBF0009367B0/* PBXTargetDependency */,30 A519E5E30978287D002A9A5C /* PBXTargetDependency */, 31 31 ); 32 32 name = wired; … … 177 177 178 178 /* Begin PBXContainerItemProxy section */ 179 77B7C33E0973FBF0009367B0 /* PBXContainerItemProxy */ = {180 isa = PBXContainerItemProxy;181 containerPortal = 089C1669FE841209C02AAC07 /* Project object */;182 proxyType = 1;183 remoteGlobalIDString = 8D202CE80486D31800D8A456;184 remoteInfo = "Wired Preference Pane";185 };186 179 A50335570864C22200CE6911 /* PBXContainerItemProxy */ = { 187 180 isa = PBXContainerItemProxy; … … 197 190 remoteGlobalIDString = A50335AD0864C98900CE6911; 198 191 remoteInfo = "Wired Server"; 192 }; 193 A519E5E20978287D002A9A5C /* PBXContainerItemProxy */ = { 194 isa = PBXContainerItemProxy; 195 containerPortal = 089C1669FE841209C02AAC07 /* Project object */; 196 proxyType = 1; 197 remoteGlobalIDString = 8D202CE80486D31800D8A456 /* Wired Preference Pane */; 198 remoteInfo = "Wired Preference Pane"; 199 199 }; 200 200 A5841A1207AA40E400C31480 /* PBXContainerItemProxy */ = { … … 785 785 786 786 /* Begin PBXTargetDependency section */ 787 77B7C33F0973FBF0009367B0 /* PBXTargetDependency */ = {788 isa = PBXTargetDependency;789 target = 8D202CE80486D31800D8A456 /* Wired Preference Pane */;790 targetProxy = 77B7C33E0973FBF0009367B0 /* PBXContainerItemProxy */;791 };792 787 A50335580864C22200CE6911 /* PBXTargetDependency */ = { 793 788 isa = PBXTargetDependency; … … 799 794 target = A50335AD0864C98900CE6911 /* wired */; 800 795 targetProxy = A50335E40864CC6600CE6911 /* PBXContainerItemProxy */; 796 }; 797 A519E5E30978287D002A9A5C /* PBXTargetDependency */ = { 798 isa = PBXTargetDependency; 799 target = 8D202CE80486D31800D8A456 /* Wired Preference Pane */; 800 targetProxy = A519E5E20978287D002A9A5C /* PBXContainerItemProxy */; 801 801 }; 802 802 A5841A1307AA40E400C31480 /* PBXTargetDependency */ = { WiredServer/trunk/wired.sh
r3486 r3496 34 34 35 35 if [ ! -e "$MAKEFILE" ]; then 36 rm -f config.status config.h Makefile 36 for j in . libwired; do 37 rm -f "$j/config.status" "$j/config.h" "$j/Makefile" 38 done 37 39 38 40 UNAME_R=$(uname -r) … … 51 53 mkdir -p "$j/$OBJDIR" 52 54 55 ls -l "$j/config.h" 56 echo ln -sf "$CONFIG_H" "$j/config.h" 57 53 58 ln -sf "$CONFIG_H" "$j/config.h" 54 59 ln -sf "$CONFIG_STATUS" "$j/config.status" 55 60 ln -sf "$MAKEFILE" "$j/Makefile" 56 61 ln -sf "$OBJDIR" "$j/obj" 62 63 ls -l "$j/config.h" 57 64 done 58 65 … … 76 83 77 84 HL2WIRED_BINARIES="$HL2WIRED $HL2WIRED_BINARIES" 78 LIBWIRED_BINAR IES="$LIBWIRED $LIBWIRED_BINARIES"85 LIBWIRED_BINARY="$LIBWIRED" 79 86 WIRED_BINARIES="$WIRED $WIRED_BINARIES" 80 87 … … 83 90 84 91 lipo -create $HL2WIRED_BINARIES -output run/hl2wired || exit 1 85 lipo -create $LIBWIRED_BINARIES -output libwired/run/lib/libwired.a || exit 186 92 lipo -create $WIRED_BINARIES -output run/wired || exit 1 93 cp "$LIBWIRED" libwired/run/lib/libwired.a 87 94 88 95 # Install wired into /Library/Wired
