-
Notifications
You must be signed in to change notification settings - Fork 69
/
autogen.sh
executable file
·35 lines (28 loc) · 981 Bytes
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
DIE=false
(autoconf --version && autoheader --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile Open Dylan."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf"
DIE=true
}
(aclocal --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile Open Dylan."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake"
DIE=true
}
$DIE && exit 1
echo "*** Hello, there! ***"
echo "*** Please ignore errors and warnings from automake. ***"
echo "*** Thanks! ***"
( cd $srcdir
mkdir -p config/build-aux
aclocal -I config/m4
automake --foreign --copy --add-missing
autoconf )