]> sourceware.org Git - lvm2.git/blame - po/Makefile.in
.
[lvm2.git] / po / Makefile.in
CommitLineData
69792976 1#
6606c3ae 2# Copyright (C) 2004 Red Hat, Inc. All rights reserved.
69792976 3#
7f8f8bfa 4# This file is part of LVM2.
69792976 5#
6606c3ae
AK
6# This copyrighted material is made available to anyone wishing to use,
7# modify, copy, or redistribute it subject to the terms and conditions
8# of the GNU General Public License v.2.
69792976 9#
6606c3ae
AK
10# You should have received a copy of the GNU General Public License
11# along with this program; if not, write to the Free Software Foundation,
12# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
69792976
AK
13
14srcdir = @srcdir@
15top_srcdir = @top_srcdir@
db8b5af9 16top_builddir = @top_builddir@
69792976
AK
17
18LANGS=de
19
0782ad50 20TARGETS=$(LANGS:%=lvm2_%.mo) $(LANGS:%=dm_%.mo)
69792976 21
0782ad50
AK
22DM_POSOURCES = $(top_srcdir)/dmsetup/*.pot $(top_srcdir)/libdm/*.pot \
23 $(top_srcdir)/libdm/*/*.pot
69792976 24
0782ad50 25LVM_POSOURCES = $(top_srcdir)/tools/*.pot $(top_srcdir)/lib/*/*.pot
69792976 26
814aebc4 27include $(top_builddir)/make.tmpl
69792976 28
0782ad50 29lvm2.po: Makefile $(LVM_POSOURCES)
69792976
AK
30 @echo Compiling string table
31 @xgettext -C -F --keyword=print_log --keyword=log_debug \
32 --keyword=log_info --keyword=_ --keyword=N_ \
33 --keyword=log_notice --keyword=log_warn --keyword=log_err \
34 --keyword=log_fatal --keyword=log_debug --keyword=log_error \
35 --keyword=log_print --keyword=log_verbose \
36 --keyword=log_very_verbose -d - \
0782ad50 37 $(LVM_POSOURCES) > $@
69792976 38
0782ad50
AK
39device-mapper.po: Makefile $(DM_POSOURCES)
40 @echo Compiling string table
41 @xgettext -C -F --keyword=dm_log --keyword=log_debug \
42 --keyword=log_info --keyword=_ --keyword=N_ \
43 --keyword=log_notice --keyword=log_warn --keyword=log_err \
44 --keyword=log_fatal --keyword=log_debug --keyword=log_error \
45 --keyword=log_print --keyword=log_verbose \
46 --keyword=log_very_verbose -d - \
47 $(DM_POSOURCES) > $@
48
49pofile: lvm2.po device-mapper.po
50
51# FIXME
52install: $(TARGETS)
53 @echo Installing translation files in $(localedir)
54 @( \
55 for lang in $(LANGS); do \
23b059e7 56 $(INSTALL_DATA) -D $$lang.mo \
0782ad50
AK
57 $(localedir)/$$lang/LC_MESSAGES/lvm2.mo;\
58 done; \
59 )
60 @( \
61 for lang in $(LANGS); do \
23b059e7 62 $(INSTALL_DATA) -D $$lang.mo \
0782ad50
AK
63 $(localedir)/$$lang/LC_MESSAGES/device-mapper.mo;\
64 done; \
65 )
This page took 0.097221 seconds and 5 git commands to generate.