blob: 64c6716bec2e40a149aa40e4fac6d36bb22ea52a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# gettextize updates Makefile.am, configure.in
gettextize --copy --force --intl --no-changelog &&
aclocal &&
# autoheader creates config.h.in needed by autoconf
autoheader &&
# autoconf creates configure
autoconf &&
# automake creates Makefile.in
automake --add-missing --copy --gnu
|