2002-02-11 12:08:37 +00:00
|
|
|
#!/bin/sh
|
2002-11-15 12:47:27 +00:00
|
|
|
libtoolize --copy --force --automake
|
2002-02-11 12:08:37 +00:00
|
|
|
rm -f config.cache
|
2002-12-08 13:04:21 +00:00
|
|
|
aclocal -I .
|
2002-03-02 11:59:07 +00:00
|
|
|
autoheader
|
2002-08-12 12:33:58 +00:00
|
|
|
automake -a
|
2002-02-11 12:08:37 +00:00
|
|
|
autoconf
|
2002-10-17 09:30:10 +00:00
|
|
|
echo "Done."
|
2002-03-02 11:59:07 +00:00
|
|
|
|
|
|
|
|