2008-02-26 20:36:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
find . -type d -name .deps | xargs rm -rf
|
2008-02-26 23:20:41 +00:00
|
|
|
rm -rf config.guess config.sub ltmain.sh
|
2008-02-27 20:55:24 +00:00
|
|
|
libtoolize --automake
|
2008-02-26 20:36:04 +00:00
|
|
|
aclocal 2>/dev/null &&
|
|
|
|
autoheader &&
|
|
|
|
automake --add-missing --include-deps # 2>/dev/null &&
|
|
|
|
autoconf
|
|
|
|
|