2006-04-27 23:34:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
target="$1"
|
|
|
|
loc="$2"
|
2006-04-27 23:34:46 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
test "$target" || exit 1
|
2006-04-27 23:34:46 +00:00
|
|
|
test "$loc" || loc=.
|
2006-05-21 10:45:01 +00:00
|
|
|
test -x "$loc/usage" || exit 1
|
2006-10-05 10:17:08 +00:00
|
|
|
test "$SED" || SED=sed
|
|
|
|
|
|
|
|
sz=`"$loc/usage" | wc -c` || exit 1
|
|
|
|
|
|
|
|
exec >"$target"
|
2006-04-27 23:34:46 +00:00
|
|
|
|
|
|
|
echo 'static const char packed_usage[] = '
|
2006-10-05 10:17:08 +00:00
|
|
|
"$loc/usage" | bzip2 -1 | od -v -t x1 \
|
|
|
|
| $SED -e 's/^[^ ]*//' -e 's/ \(..\)/\\x\1/g' -e 's/^\(.*\)$/"\1"/'
|
2006-04-27 23:34:46 +00:00
|
|
|
echo ';'
|
2006-05-26 13:28:39 +00:00
|
|
|
echo '#define SIZEOF_usage_messages' `expr 0 + $sz`
|