Files
gf-core/src/runtime/c/setup.sh
2017-08-11 21:11:24 +02:00

22 lines
323 B
Bash
Executable File

# Executable version of INSTALL
command="$1"
shift
case "$command" in
configure)
[ `uname` != Darwin ] || glibtoolize
autoreconf -i
./configure "$@"
;;
build)
make -j "$@"
;;
copy|install)
make install "$@"
;;
*)
echo "Usage: setup.sh [configure|build|copy|install] ..."
esac