File: autogen.sh

package info (click to toggle)
gfccore 2.3.1-7
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 6,196 kB
  • ctags: 2,801
  • sloc: sh: 8,328; cpp: 7,163; makefile: 189
file content (27 lines) | stat: -rwxr-xr-x 404 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

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PKG_NAME="GFC-Core"

echo "Generating GFC-Core configuration files..."

echo "Adding libtools..."
libtoolize --automake --copy

echo "Building macros..."
aclocal 

echo "Building makefiles..."
automake --add-missing --copy

echo "Building configure..."
autoconf

rm -f config.cache

echo
echo 'run "./configure ; make ; make install"'
echo