blob: d6e7db7e928e191eee6297fe2104f5776ef9d42a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
test -f ChangeLog || touch ChangeLog
libtoolize=`which glibtoolize`
if test -z "$libtoolize"; then
libtoolize=libtoolize
fi
gettextize --force --no-changelog
$libtoolize --automake --copy --force
aclocal $ACLOCAL_AMFLAGS
autoheader
automake --add-missing --copy
autoconf
|