2000-03-31 00:49:20 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
|
|
|
|
# This file is handy to update all the files generated by autoconf, automake
|
|
|
|
|
# and friends, quickly.
|
|
|
|
|
#
|
|
|
|
|
|
2002-03-04 06:28:14 +00:00
|
|
|
aclocal -I .
|
2000-03-31 00:49:20 +00:00
|
|
|
autoheader
|
|
|
|
|
autoconf
|
2002-03-04 06:28:14 +00:00
|
|
|
libtoolize --copy --force --automake
|
|
|
|
|
automake --add-missing --gnu --include-deps
|