Changeset 40 for trunk/data/diskdev-cmds
- Timestamp:
- 01/27/08 23:39:26 (1 year ago)
- Files:
-
- 1 modified
-
trunk/data/diskdev-cmds/make.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/diskdev-cmds/make.sh
r11 r40 12 12 tproj=$(basename "${tproj}" .tproj) 13 13 echo ${tproj} 14 arm-apple-darwin-gcc -Idisklib -o "${tproj}" $(find "${tproj}.tproj" -name '*.c') disklib/libdisk.a -framework IOKit -framework CoreFoundation -lutil 14 15 extra= 16 if [[ ${tproj} = mount_cd9660 ]]; then 17 extra="${extra} -framework IOKit" 18 fi 19 20 if [[ ${tproj} = mount_cd9660 || ${tproj} = newfs_hfs ]]; then 21 extra="${extra} -framework CoreFoundation" 22 fi 23 24 arm-apple-darwin-gcc -Idisklib -o "${tproj}" $(find "${tproj}.tproj" -name '*.c') disklib/libdisk.a -lutil ${extra} 15 25 arm-apple-darwin-strip "${tproj}" 16 26 done
