libstarlight/maketest.sh

16 lines
208 B
Bash
Raw Permalink Normal View History

#!/bin/bash
function abort {
2017-01-17 23:35:39 -05:00
echo Make or send failed
exit
}
2017-01-21 18:52:17 -05:00
mode=send
if [ "$1" = "c" ]; then
mode=run
fi
cd libstarlight
make install || abort
cd ../testbed
make clean
2017-01-21 18:52:17 -05:00
make $mode || abort
cd ..