2003-10-25 14:50:23 +00:00
|
|
|
#!/bin/sh
|
2003-11-01 20:42:16 +00:00
|
|
|
|
2005-04-17 19:01:18 +00:00
|
|
|
# gettextize updates Makefile.am, configure.in
|
2005-04-23 15:03:27 +00:00
|
|
|
cp configure.in configure.in.old
|
2005-04-24 08:48:54 +00:00
|
|
|
cp Makefile.am Makefile.am.old
|
2005-04-17 19:01:18 +00:00
|
|
|
gettextize --copy --force --intl --no-changelog &&
|
2005-04-24 08:48:54 +00:00
|
|
|
mv Makefile.am.old Makefile.am
|
2005-04-23 15:03:27 +00:00
|
|
|
mv configure.in.old configure.in
|
2005-10-15 12:34:21 +00:00
|
|
|
libtoolize --force &&
|
2005-04-17 19:01:18 +00:00
|
|
|
aclocal &&
|
|
|
|
# autoheader creates config.h.in needed by autoconf
|
|
|
|
autoheader &&
|
|
|
|
# autoconf creates configure
|
|
|
|
autoconf &&
|
|
|
|
# automake creates Makefile.in
|
|
|
|
automake --add-missing --copy --gnu
|