You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
598 B
21 lines
598 B
#!/bin/bash |
|
|
|
# build each command as a standalone executable |
|
|
|
NOBUILD=1 scripts/make.sh > /dev/null && |
|
${HOSTCC:-cc} -I . scripts/install.c -o generated/instlist && |
|
export PREFIX=${PREFIX:-change/} && |
|
mkdir -p "$PREFIX" || exit 1 |
|
|
|
# Build all the commands standalone except: |
|
|
|
# sh - shell builtins like "cd" and "exit" need the multiplexer |
|
# help - needs to know what other commands are enabled (use command --help) |
|
|
|
for i in $(generated/instlist | egrep -vw "sh|help") |
|
do |
|
echo -n " $i" && |
|
scripts/single.sh $i > /dev/null 2>$PREFIX/${i}.bad && |
|
rm $PREFIX/${i}.bad || echo -n '*' |
|
done |
|
echo
|
|
|