2006-04-28 05:04:46 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
loc="$1"
|
|
|
|
|
|
|
|
test "$loc" || loc=.
|
2006-05-21 16:15:01 +05:30
|
|
|
test -x "$loc/usage" || exit 1
|
2006-04-28 05:04:46 +05:30
|
|
|
|
|
|
|
echo 'static const char packed_usage[] = '
|
|
|
|
"$loc"/usage | bzip2 -9 | od -v -t x1 \
|
|
|
|
| sed -e 's/^[^ ]*//' -e 's/ \(..\)/\\x\1/g' -e 's/^\(.*\)$/"\1"/'
|
|
|
|
echo ';'
|
|
|
|
echo '#define SIZEOF_usage_messages' $((0 + `"$loc"/usage | wc -c `))
|