File: autogen.sh

package info (click to toggle)
liboglappth 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,472 kB
  • sloc: sh: 9,780; cpp: 1,778; makefile: 35
file content (35 lines) | stat: -rwxr-xr-x 726 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
32
33
34
35
#!/bin/sh

echo "Running libtoolize"
libtoolize --force --copy

echo "Removing autom4te.cache"
rm -fr autom4te.cache
rm -f aclocal.m4

##OSTYPE=`uname -s`
##AMFLAGS="--add-missing"
##if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
##   AMFLAGS=$AMFLAGS" --include-deps";
##fi
##echo "Running aclocal"
##aclocal --force
##echo "Running automake"
##automake $AMFLAGS
##echo "Running autoconf"
##autoconf

echo "Running autoreconf"

##export AUTOCONF=autoconf-2.13
##export AUTOHEADER=autoheader-2.13

##export ACLOCAL=aclocal-1.4
##export AUTOMAKE=automake-1.4

autoreconf -v -f

echo "======================================"
echo "Now you are ready to run './configure'"
echo "======================================"