2012-04-06 19:52:55 +00:00
|
|
|
#!/bin/sh
|
2012-04-04 20:52:41 +00:00
|
|
|
|
|
|
|
reconf () {
|
|
|
|
aclocal
|
2012-04-05 18:02:53 +00:00
|
|
|
mkdir -p config
|
2012-04-04 20:52:41 +00:00
|
|
|
libtoolize --copy --automake
|
|
|
|
autoconf
|
|
|
|
autoheader
|
|
|
|
automake --no-force --add-missing --copy
|
|
|
|
}
|
|
|
|
|
2012-06-26 17:58:07 +00:00
|
|
|
(cd third_party/bnlib && ./bootstrap.sh)
|
2012-04-04 20:52:41 +00:00
|
|
|
reconf
|
|
|
|
|