File: bootstrap.sh

package info (click to toggle)
adms 2.3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,592 kB
  • sloc: xml: 7,167; perl: 4,866; ansic: 3,147; lex: 1,128; yacc: 691; sh: 323; makefile: 110
file content (28 lines) | stat: -rwxr-xr-x 453 bytes parent folder | download | duplicates (4)
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
# !/bin/sh

here=`pwd`
cd `dirname $0`

echo "Bootstrapping the ADMS sources..."

echo "Libtoolizing... "
case `uname` in
  *Darwin*) LIBTOOLIZE=glibtoolize ;;
  *)        LIBTOOLIZE=libtoolize ;;
esac
$LIBTOOLIZE --copy --force

echo "Creating aclocal.m4... "
aclocal -I m4

echo "Creating headers... "
autoheader

echo "Creating Makefiles... "
automake -Wall --copy --add-missing --foreign

echo "Creating configure... "
autoconf

echo "Done!"
exit 0