libstarlight/maketest.sh

12 lines
149 B
Bash
Raw Normal View History

#!/bin/bash
function abort {
echo Make failed
exit
}
cd libstarlight
make install || abort
cd ../testbed
make clean
make send || abort
cd ..