blob: 97617b29408bace9ba025194522ea77e157a2ff5 (
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
intltoolize --copy --force
$libtoolize --automake --copy --force
aclocal $ACLOCAL_AMFLAGS
autoheader
automake --add-missing --copy
autoconf
|