13 lines
446 B
Bash
Executable File
13 lines
446 B
Bash
Executable File
#!/bin/bash
|
|
declare -r SCRIPTS_DIR=$(dirname $0)
|
|
|
|
bash "${SCRIPTS_DIR}/m4.build" "$@" || exit 1
|
|
bash "${SCRIPTS_DIR}/autoconf.build" "$@" || exit 1
|
|
bash "${SCRIPTS_DIR}/automake.build" "$@" || exit 2
|
|
bash "${SCRIPTS_DIR}/libtool.build" "$@" || exit 3
|
|
bash "${SCRIPTS_DIR}/gmp.build" "$@" || exit 4
|
|
bash "${SCRIPTS_DIR}/mpfr.build" "$@" || exit 5
|
|
bash "${SCRIPTS_DIR}/mpc.build" "$@" || exit 6
|
|
bash "${SCRIPTS_DIR}/gcc.build" "$@" || exit 7
|
|
|