4
# http://stackoverflow.com/a/23342259
6
exe() { echo "\$ $@" ; "$@" ; }
10
echo "Set up the building of libssts and clean up too."
11
echo " ./build.sh clean - Clean up the project and build files."
13
echo " ./build.sh build - Create the build directory, run CMake (if"
14
echo " needed) and build libssts."
16
echo " ./build.sh help - Show this helpful help text."
27
if [ ! -f "Makefile" ]
43
"help"|"-h") show_usage ;;
45
"build"|"") do_build ;;