## Process this file with automake to produce Makefile.in
#
-# $Id: Makefile.am,v 1.1 2001/08/31 11:19:05 robertc Exp $
+# $Id: Makefile.am,v 1.2 2001/09/02 12:16:54 robertc Exp $
#
-AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects
+AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects VERSION=1.5
DIST_SUBDIRS = lib snmplib scripts src icons errors contrib
SUBDIRS = lib @makesnmplib@ scripts src icons errors
# configure has not been run, or if a Makefile.am in a non-configured directory
# has been updated
-aclocal \
-&& autoheader \
-&& automake --foreign --add-missing \
-&& autoconf
+if ! ( aclocal ) ; then
+ echo "aclocal failed"
+else
+ if ! ( autoheader ) ; then
+ echo "autoheader failed"
+ else
+ if ! ( automake --foreign --add-missing ) ; then
+ echo "automake failed"
+ else
+ if ! ( autoconf ) ; then
+ echo "autoconf failed"
+ else
+ echo "Autotool bootstrapping complete."
+ exit 0
+ fi
+ fi
+ fi
+fi
+
+echo "Autotool bootstrapping failed. You will need to investigate and correct" ;
+echo "before you can develop on this source tree"