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