• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-gnome/
1#!/bin/sh
2# Example for use of GNU gettext.
3# This file is in the public domain.
4#
5# Script for regenerating all autogenerated files.
6
7autopoint -f # was: gettextize -f -c
8rm po/Makevars.template
9rm po/Rules-quot
10rm po/boldquot.sed
11rm po/en@boldquot.header
12rm po/en@quot.header
13rm po/insert-header.sin
14rm po/quot.sed
15
16aclocal -I m4
17
18autoconf
19
20automake -a -c
21
22cd po
23for f in *.po; do
24  if test -r "$f"; then
25    lang=`echo $f | sed -e 's,\.po$,,'`
26    msgfmt -c -o $lang.gmo $lang.po
27  fi
28done
29cd ..
30