blob: 4d0c2d344d5507461341aff3299ee5fd4a56ecbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
set -x
case `uname` in
Darwin)
glibtoolize --quiet --copy --force
;;
*)
libtoolize --quiet --copy --force
;;
esac
aclocal
autoheader
automake --foreign --add-missing
autoconf
|