File: autogen.sh

package info (click to toggle)
gtkwave 3.1.10-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,060 kB
  • ctags: 12,772
  • sloc: ansic: 136,257; cpp: 3,443; sh: 959; makefile: 756; lex: 210
file content (31 lines) | stat: -rwxr-xr-x 676 bytes parent folder | download
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
#! /bin/sh
#
# $Id: autogen.sh,v 1.1.1.1 2007/05/30 04:25:36 gtkwave Exp $
#
# Run the various GNU autotools to bootstrap the build
# system.  Should only need to be done once.

# for now avoid using bash as not everyone has that installed
CONFIG_SHELL=/bin/sh
export CONFIG_SHELL

echo "Running aclocal..."
aclocal $ACLOCAL_FLAGS || exit 1
echo "Done with aclocal"

echo "Running autoheader..."
autoheader || exit 1
echo "Done with autoheader"

echo "Running automake..."
automake -a -c --foreign || exit 1
echo "Done with automake"

echo "Running autoconf..."
autoconf || exit 1
echo "Done with autoconf"

echo "You must now run configure"

echo "All done with autogen.sh"