summaryrefslogtreecommitdiff
path: root/newplugin
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-11-04 11:00:16 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2007-11-04 11:00:16 +0100
commit7823790beb2f16d93b59dd4dbc6c8112fb3bc97d (patch)
tree24861d45f0e39f5e689ccd42d5b29a507d12f849 /newplugin
parent993235bdcc83a11f704e32d60b7dfe3f387eb036 (diff)
downloadvdr-7823790beb2f16d93b59dd4dbc6c8112fb3bc97d.tar.gz
vdr-7823790beb2f16d93b59dd4dbc6c8112fb3bc97d.tar.bz2
Improved the 'i18n' target in plugin Makefiles
Diffstat (limited to 'newplugin')
-rwxr-xr-xnewplugin22
1 files changed, 11 insertions, 11 deletions
diff --git a/newplugin b/newplugin
index 57d814e8..e025f74f 100755
--- a/newplugin
+++ b/newplugin
@@ -12,7 +12,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: newplugin 1.38 2007/10/14 09:13:17 kls Exp $
+# $Id: newplugin 1.39 2007/11/04 10:42:52 kls Exp $
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
@@ -131,25 +131,25 @@ DEPFILE = .dependencies
PODIR = po
LOCALEDIR = \$(VDRDIR)/locale
I18Npo = \$(wildcard \$(PODIR)/*.po)
-I18Nmo = \$(addsuffix .mo, \$(foreach file, \$(I18Npo), \$(basename \$(file))))
-I18Ndirs = \$(notdir \$(foreach file, \$(I18Npo), \$(basename \$(file))))
+I18Nmsgs = \$(addprefix \$(LOCALEDIR)/, \$(addsuffix /LC_MESSAGES/vdr-\$(PLUGIN).mo, \$(notdir \$(foreach file, \$(I18Npo), \$(basename \$(file))))))
I18Npot = \$(PODIR)/\$(PLUGIN).pot
%.mo: %.po
msgfmt -c -o \$\@ \$<
\$(I18Npot): \$(wildcard *.c)
- xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<see README>' -o \$\@ \$(wildcard *.c)
+ xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<see README>' -o \$\@ \$^
-\$(I18Npo): \$(I18Npot)
+%.po: \$(I18Npot)
msgmerge -U --no-wrap --no-location --backup=none -q \$\@ \$<
+ \@touch \$\@
-i18n: \$(I18Npot) \$(I18Nmo)
- \@mkdir -p \$(LOCALEDIR)
- for i in \$(I18Ndirs); do\\
- mkdir -p \$(LOCALEDIR)/\$\$i/LC_MESSAGES;\\
- cp \$(PODIR)/\$\$i.mo \$(LOCALEDIR)/\$\$i/LC_MESSAGES/vdr-\$(PLUGIN).mo;\\
- done
+\$(I18Nmsgs): \$(LOCALEDIR)/%/LC_MESSAGES/vdr-\$(PLUGIN).mo: \$(PODIR)/%.mo
+ \@mkdir -p \$(dir \$@)
+ cp \$< \$\@
+
+.PHONY: i18n
+i18n: \$(I18Nmsgs)
### Targets: