Commit db038c3c authored by Alessandro Rubini's avatar Alessandro Rubini

MAKEALL: a script to build-test all configs

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 03e319a2
#!/bin/sh
# A trivial script to build with all known configurations
# (please add a configs/ file to test your special case
T=$(mktemp /tmp/wrpc-config.XXXXXX)
configs=$(ls configs)
for c in $configs; do
echo "##### Building with '$c'"
if ! make $c 2>&1 >> $T; then
echo "Error in configuration (see $T)"
exit 1
fi
make -s clean
make -s
done
rm $T
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment