Differences From Artifact [622c712f8a]:
- Executable file
build/cackey_osx_build/build_osx.sh
— part of check-in
[ee77b32476]
at
2010-07-12 22:40:34
on branch trunk
— Updated build_osx to build correctly under "build" directory.
Updated pmbuild files to have correct permissions and build correctly under "build" directory. (user: kvanals, size: 4632) [annotate] [blame] [check-ins using]
To Artifact [5933946138]:
- Executable file build/cackey_osx_build/build_osx.sh — part of check-in [473fc401e3] at 2010-07-12 22:50:11 on branch trunk — Updated usage in OSX build script (user: kvanals, size: 4573) [annotate] [blame] [check-ins using]
1 2 3 4 | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne # kenneth.l.vanalstyne@usace.army.mil | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/bin/bash # Shell Script to make Mac OS X Releases of CACKey # Kenneth Van Alstyne # kenneth.l.vanalstyne@usace.army.mil # 20100712 # Usage function usage() { echo "Usage: build_osx.sh <target>" echo Where target is one of: echo " panther - (Builds 10.3 Library for PPCG3)" echo " tiger - (Builds Universal 10.4 Library for PPCG3/i386)" echo " leopard - (Builds Universal 10.5 Library for PPCG4/i386)" echo " snowleopard - (Builds Universal 10.6 Library for i386/x86_64)" echo " all - (Builds for all supported targets)" echo " clean - (Cleans up)" echo "Run from CACKey Build Root." exit $? } # Clean up function clean() { rm -rf macbuild make distclean |
︙ | ︙ |