15 lines
201 B
Bash
Executable File
15 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
cd "$srcdir"
|
|
|
|
libtoolize --force --automake
|
|
aclocal -I m4
|
|
autoconf -f
|
|
autoheader
|
|
automake --foreign --include-deps --add-missing
|
|
|
|
exit $?
|