-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
autogen.sh
executable file
·52 lines (43 loc) · 1.4 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/sh
# Run this to set up the build system: configure, makefiles, etc.
# (based on the version in enlightenment's cvs)
package="discid"
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
DIE=0
LIBTOOLIZE=libtoolize
# Check to see if we need to use the Mac OS X libtool version
(glibtoolize --version) < /dev/null > /dev/null 2>&1 && {
LIBTOOLIZE=glibtoolize
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $package."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf"
DIE=1
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile $package."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake"
DIE=1
}
if test "$DIE" -eq 1; then
exit 1
fi
# Do some cleanup
rm -f config.cache config.log config.guess config.sub configure
echo "Generating configuration files for $package, please wait...."
echo " aclocal $ACLOCAL_FLAGS"
aclocal $ACLOCAL_FLAGS
echo " autoheader"
autoheader
echo " $LIBTOOLIZE --automake --force"
$LIBTOOLIZE --automake --force
echo " automake --add-missing"
automake --add-missing
echo " autoconf"
autoconf