mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 13:42:46 +00:00
12 lines
157 B
Bash
12 lines
157 B
Bash
#!/bin/bash
|
|
function abort {
|
|
echo Make or send failed
|
|
exit
|
|
}
|
|
cd libstarlight
|
|
make install || abort
|
|
cd ../testbed
|
|
make clean
|
|
make send || abort
|
|
cd ..
|