-
Notifications
You must be signed in to change notification settings - Fork 119
/
autogen.sh
executable file
·93 lines (84 loc) · 2.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh
#
# Run this before configure
#
if [ ! -f "autogen.sh" ]; then
echo "$0: This script must be run in the top-level directory"
exit 1
fi
run_configure=true
while [ -n "$1" ]
do
case "$1" in
--help|-help|-h)
echo "Usage: $0 [--no-configure] [--clean]"
exit 0
;;
--no-configure)
run_configure=false
shift
;;
--clean)
# Start from a clean state.
rm -rf config.cache autom4te*.cache
shift
;;
*)
echo "$0: Error: Unknown flag \"$1\"."
exit 1
esac
done
# For version x.y>1.4, x should not be 0, and y should be [4-9] or more than one digit.
automake --version >/dev/null &&
automake --version | test "`sed -En '/^automake \(GNU automake\) [^0]\.([4-9]|[1-9][0-9])/p'`"
if [ $? -ne 0 ]; then
echo "$0: Error: you need automake 1.4 or later. Please upgrade."
exit 1
fi
rm -f autogen.err
# If there's a config.cache file, we may need to delete it.
# If we have an existing configure script, save a copy for comparison.
# (Based on Subversion's autogen.sh, see also the deletion code below.)
OLD_CONFIGURE="${TMPDIR:-/tmp}/configure.$$.tmp"
if [ -f config.cache ] && [ -f configure ]; then
cp configure "$OLD_CONFIGURE"
fi
echo "$0: Creating 'configure'..."
# Regenerate configuration scripts with the latest autotools updates.
autoreconf -fvi 2>autogen.err
status=$?
if [ $status -ne 0 ]; then
echo ""
echo "$0: * * * Warning: autoreconf returned bad status ($status) - check autogen.err"
echo ""
exit 1
fi
# If we have a config.cache file, toss it if the configure script has
# changed, or if we just built it for the first time.
if [ -f config.cache ]; then
(
[ -f "$OLD_CONFIGURE" ] && cmp configure "$OLD_CONFIGURE" > /dev/null 2>&1
) || (
echo "$0: Tossing config.cache, since 'configure' has changed."
rm config.cache
)
rm -f "$OLD_CONFIGURE"
fi
if $run_configure; then
mkdir -p build
cd build
echo
echo "$0: Running 'configure'..."
../configure --enable-maintainer-mode "$@"
status=$?
if [ $status -eq 0 ]; then
echo
echo "$0: Now type 'make' to compile link-grammar (in the 'build' directory)."
else
echo
echo "$0: 'configure' returned a bad status ($status)."
fi
else
echo
echo "$0: Now run 'configure' and 'make' to compile link-grammar."
fi