src/runtime/c/setup.sh: executable version of INSTALL, used from debian/rules

This commit is contained in:
hallgren
2014-06-16 23:28:12 +00:00
parent 6c40e0ac37
commit 9944916127

21
src/runtime/c/setup.sh Normal file
View File

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