mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 07:10:34 -08:00
20 lines
571 B
Bash
Executable file
20 lines
571 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This is just a driver for configure, the real configure is in src.
|
|
# This script identifies the machine, and creates a directory for
|
|
# the installation, where it runs ${srcdir}/configure.
|
|
|
|
srcdir=`pwd`/src
|
|
buildir=build
|
|
|
|
if [ ! -d ${buildir} ] ; then
|
|
echo Creating directory "\`${buildir}'"
|
|
mkdir ${buildir}
|
|
fi
|
|
|
|
# Now run the real configure script
|
|
echo Switching to directory "\`${buildir}'" to continue configuration.
|
|
cd ${buildir}
|
|
${srcdir}/configure --srcdir=${srcdir} $*
|
|
|
|
echo Configuration complete. To build ECL, issue 'make' in this directory.
|