forked from Mirror/libstarlight
12 lines
149 B
Bash
12 lines
149 B
Bash
#!/bin/bash
|
|
function abort {
|
|
echo Make failed
|
|
exit
|
|
}
|
|
cd libstarlight
|
|
make install || abort
|
|
cd ../testbed
|
|
make clean
|
|
make send || abort
|
|
cd ..
|