mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 05:32:46 +00:00
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 ..
|