mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
22 lines
323 B
Bash
Executable File
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
|