blob: 545e1c05a675fdecdb9197f50542a9881b738d02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh -x
# vim:ts=2:sw=2:et:
if test `uname` = "Darwin" ; then
glibtoolize --automake
else
libtoolize --automake
fi
autoheader
aclocal
automake --add-missing --foreign
autoconf
|