File: autogen.sh

package info (click to toggle)
z80dasm 1.1.0-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 484 kB
  • ctags: 145
  • sloc: ansic: 2,118; sh: 844; makefile: 98
file content (31 lines) | stat: -rwxr-xr-x 619 bytes parent folder | download | duplicates (2)
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 2007-06-14 08:12:52 avian 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 -n "Running aclocal... "
aclocal $ACLOCAL_FLAGS || exit 1
echo "done"

echo -n "Running autoheader... "
autoheader || exit 1
echo "done"

echo -n "Running automake... "
automake -a -c || exit 1
echo "done"

echo -n "Running autoconf... "
autoconf || exit 1
echo "done"

echo "You must now run configure"

echo "All done with autogen.sh"