No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / examples / hello-objc-gnome / autogen.sh
blob755010a5243f8f5a089a8bbb51c8a1870fe90cda
1 #!/bin/sh
2 # Example for use of GNU gettext.
3 # Copyright (C) 2003 Free Software Foundation, Inc.
4 # This file is in the public domain.
6 # Script for regenerating all autogenerated files.
8 autopoint -f # was: gettextize -f -c
9 rm po/Makevars.template
10 rm po/Rules-quot
11 rm po/boldquot.sed
12 rm po/en@boldquot.header
13 rm po/en@quot.header
14 rm po/insert-header.sin
15 rm po/quot.sed
17 aclocal -I m4
19 autoconf
21 automake -a -c
23 cd po
24 for f in *.po; do
25 if test -r "$f"; then
26 lang=`echo $f | sed -e 's,\.po$,,'`
27 msgfmt -c -o $lang.gmo $lang.po
29 done
30 cd ..