File: autogen.sh

package info (click to toggle)
gnucap 1%3A0.35-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,136 kB
  • ctags: 4,261
  • sloc: cpp: 20,498; sh: 578; makefile: 221; ansic: 47
file content (27 lines) | stat: -rwxr-xr-x 519 bytes parent folder | download | duplicates (3)
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
#! /bin/sh
#
# $Id$
#
# 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 "Running autoheader..."
autoheader || exit 1

echo "Running automake..."
automake -a -c --gnu --ignore-deps || exit 1

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

echo "not Running configure..."
##./configure $@ || exit 1