File: autogen.sh

package info (click to toggle)
plib 1.8.4-10
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,552 kB
  • ctags: 8,379
  • sloc: cpp: 65,641; sh: 8,782; makefile: 246
file content (19 lines) | stat: -rwxr-xr-x 398 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

OSTYPE=`uname -s`

AMFLAGS="--add-missing"
if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
   AMFLAGS=$AMFLAGS" --include-deps";
fi

echo "Running aclocal"
aclocal
echo "Running automake"
automake $AMFLAGS
echo "Running autoconf"
autoconf

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