1 |
#! /bin/sh |
2 |
# Run this to generate all the initial makefiles, etc. |
3 |
# This was lifted from the Gimp, and adapted slightly by |
4 |
# Christian Bauer. |
5 |
|
6 |
DIE=0 |
7 |
|
8 |
PROG=cxmon |
9 |
|
10 |
# Check how echo works in this /bin/sh |
11 |
case `echo -n` in |
12 |
-n) _echo_n= _echo_c='\c';; |
13 |
*) _echo_n=-n _echo_c=;; |
14 |
esac |
15 |
|
16 |
(autoconf --version) < /dev/null > /dev/null 2>&1 || { |
17 |
echo |
18 |
echo "You must have autoconf installed to compile $PROG." |
19 |
echo "Download the appropriate package for your distribution," |
20 |
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" |
21 |
DIE=1 |
22 |
} |
23 |
|
24 |
(automake --version) < /dev/null > /dev/null 2>&1 || { |
25 |
echo |
26 |
echo "You must have automake installed to compile $PROG." |
27 |
echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.4.tar.gz" |
28 |
echo "(or a newer version if it is available)" |
29 |
DIE=1 |
30 |
} |
31 |
|
32 |
if test "$DIE" -eq 1; then |
33 |
exit 1 |
34 |
fi |
35 |
|
36 |
aclocalinclude="$ACLOCAL_FLAGS"; \ |
37 |
(echo $_echo_n " + Running aclocal: $_echo_c"; \ |
38 |
aclocal $aclocalinclude; \ |
39 |
echo "done.") && \ |
40 |
(echo $_echo_n " + Running autoheader: $_echo_c"; \ |
41 |
autoheader; \ |
42 |
echo "done.") && \ |
43 |
(echo $_echo_n " + Running automake: $_echo_c"; \ |
44 |
automake --gnu --add-missing --copy; \ |
45 |
echo "done.") && \ |
46 |
(echo $_echo_n " + Running autoconf: $_echo_c"; \ |
47 |
autoconf; \ |
48 |
echo "done.") |
49 |
|
50 |
rm -f config.cache |
51 |
|
52 |
if [ x"$NO_CONFIGURE" = "x" ]; then |
53 |
echo " + Running 'configure $@':" |
54 |
if [ -z "$*" ]; then |
55 |
echo " ** If you wish to pass arguments to ./configure, please" |
56 |
echo " ** specify them on the command line." |
57 |
fi |
58 |
./configure "$@" |
59 |
fi |