2019-12-09 15:49:37 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-12-15 02:30:48 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
# Show the usage screen
|
|
|
|
show_help(){
|
|
|
|
cat <<EOF
|
|
|
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
|
|
|
|
|
|
|
To assign environment variables (e.g., FC, FFLAGS...), specify them as
|
|
|
|
VAR=VALUE. Defaults for the options are specified in brackets.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-h, --help display this help and exit
|
|
|
|
--prefix=PREFIX install files in PREFIX [/usr/local]
|
|
|
|
--enable-static statically link programs and libraries [no]
|
|
|
|
--disable-static dynamically link programs and libraries [yes]
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check whether a command exists
|
|
|
|
check() {
|
|
|
|
test -z "$1" && return 1
|
|
|
|
printf 'checking for %s... ' "$1"
|
|
|
|
command -v "$1" || (echo 'not found'; exit 1)
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
# Parse command line options
|
|
|
|
for arg in "$@"; do
|
|
|
|
case "$arg" in
|
|
|
|
-h|--help) show_help; exit 0 ;;
|
|
|
|
--prefix=*)
|
|
|
|
PREFIX="${arg#*=}"
|
|
|
|
printf 'install prefix set to %s\n' "$PREFIX"
|
|
|
|
;;
|
|
|
|
--enable-static) printf 'STATIC=1\n' >> configure.mk ;;
|
|
|
|
--disable-static) ;;
|
|
|
|
*=*)
|
|
|
|
printf '%s\n' "${arg?}" >> configure.mk
|
|
|
|
printf 'set %s\n' "$arg"
|
|
|
|
;;
|
|
|
|
*) show_help; exit 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# Truncate the current configuration
|
|
|
|
: > configure.mk
|
|
|
|
|
|
|
|
# Platform information
|
2021-12-15 02:30:45 +01:00
|
|
|
printf 'Running on '
|
|
|
|
case $(uname -s) in
|
|
|
|
Linux*) echo 'Linux' ;;
|
|
|
|
Darwin*) echo 'Mac' ;;
|
|
|
|
CYGWIN*|MSYS*|MINGW*) echo 'Windows' ;;
|
|
|
|
*) echo 'unknown OS' ;;
|
2019-12-09 15:49:37 +01:00
|
|
|
esac
|
|
|
|
|
2021-12-15 02:30:45 +01:00
|
|
|
os=$(uname -r)
|
|
|
|
printf 'OS version %s\n' "$os"
|
2019-12-09 15:49:37 +01:00
|
|
|
|
2021-12-15 02:30:48 +01:00
|
|
|
# Architecture information
|
2021-12-15 02:30:45 +01:00
|
|
|
arch=$(uname -m)
|
|
|
|
printf 'Processor architecture %s\n' "$arch"
|
2019-12-09 15:49:37 +01:00
|
|
|
|
2021-12-15 02:30:48 +01:00
|
|
|
# Variables with a default
|
|
|
|
printf '%s=%s\n' PREFIX "${PREFIX:-/usr/local}" >> configure.mk
|
2019-12-09 15:49:37 +01:00
|
|
|
|
2021-12-15 02:30:48 +01:00
|
|
|
# Detect the Fortran compiler
|
|
|
|
for FC in "$FC" ifort gfortran f77; do
|
|
|
|
check "$FC" && break
|
2019-12-09 15:49:37 +01:00
|
|
|
done
|
2021-12-15 02:30:45 +01:00
|
|
|
# shellcheck disable=SC2181
|
2019-12-09 15:49:37 +01:00
|
|
|
if [ $? -ne 0 ]; then
|
2021-12-15 02:30:48 +01:00
|
|
|
printf 'Fortran compiler not found: cannot proceed\n'
|
2019-12-09 15:49:37 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
2021-12-15 02:30:48 +01:00
|
|
|
printf 'using %s as Fortran compiler\n' "$FC"
|
|
|
|
printf '%s=%s\n' FC "$FC" >> configure.mk
|