File: autogen.sh

package info (click to toggle)
plib 1.8.5-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,588 kB
  • sloc: cpp: 63,284; sh: 3,457; makefile: 211
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 "======================================"