Forced checkin with no changes due to missed log entry from in commit
[geda-pcb/gde.git] / autogen.sh
blobef3441494df437f9566531c4ddfe808c6c5a9eaa
1 #! /bin/sh
3 # $Id$
5 # Run the various GNU autotools to bootstrap the build
6 # system. Should only need to be done once.
8 # for now avoid using bash as not everyone has that installed
9 CONFIG_SHELL=/bin/sh
10 export CONFIG_SHELL
12 echo "Running aclocal..."
13 aclocal $ACLOCAL_FLAGS || exit 1
14 echo "Done with aclocal"
16 echo "Running autoheader..."
17 autoheader || exit 1
18 echo "Done with autoheader"
20 echo "Running automake..."
21 automake -a -c --foreign || exit 1
22 echo "Done with automake"
24 echo "Running autoconf..."
25 autoconf || exit 1
26 echo "Done with autoconf"
28 echo "You must now run configure"
30 echo "All done with autogen.sh"