TIVI-153: Add as dependency for iputils
[profile/ivi/opensp.git] / autoinit.sh
1 #!/bin/sh
2 #
3 # $Id: autoinit.sh,v 1.1.2.2 2005/12/09 04:00:57 neilroeth Exp $
4 #
5 # autoinit.sh - part of build system for C/C++ Unix/X11 programs
6 # Copyright (C) 1999 Hans Ulrich Niedermann
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
22 basename="$(basename "$0" || echo "$0")"
23
24 for command in aclocal autoheader libtoolize "automake --add-missing" autoconf; do
25     echo "$basename: Executing \"${command}\""
26     ${command}
27     status=$?
28     if test $status -ne 0; then
29         echo "$basename: Execution of \"${command}\" failed (exit status ${status})"
30         echo "$basename: aborted (exit status ${status})"
31         exit ${status}
32     fi
33 done
34
35 configure="$(dirname "$0" || echo "<source-dir>")/configure"
36 echo "$basename: You probably want to run \"$configure\" now."
37 echo "$basename: See \"$configure --help\" for help \"$configure\" options"