2006-04-12 20:19:42 +00:00
|
|
|
# $Id$
|
2006-04-11 21:19:46 +00:00
|
|
|
# ------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002-2005 Novell/SUSE
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of version 2 of the GNU General Public
|
|
|
|
# License published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# The including makefile needs to define LANG, which lists the lang
|
|
|
|
# files to include; e.g. LANG=en_US de_DE, where en_US.po and de_DE.po
|
|
|
|
# exist
|
|
|
|
LOCALEDIR=/usr/share/locale
|
|
|
|
|
|
|
|
XGETTEXT_ARGS=--copyright-holder="NOVELL, Inc." --msgid-bugs-address=apparmor-general@forge.novell.com -d ${NAME}
|
|
|
|
|
|
|
|
# When making the .pot file, it's expected that the parent Makefile will
|
|
|
|
# pass in the list of sources in the SOURCES variable
|
|
|
|
PARENT_SOURCES=$(foreach source, ${SOURCES}, ../${source})
|
|
|
|
|
2006-11-15 09:22:15 +00:00
|
|
|
LANGS=$(patsubst %.po, %, $(wildcard *.po))
|
|
|
|
TARGET_MOS=$(foreach lang, $(filter-out $(DISABLED_LANGS),$(LANGS)), ${lang}.mo)
|
2006-04-11 21:19:46 +00:00
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: ${TARGET_MOS}
|
|
|
|
|
|
|
|
${NAME}.pot: ${PARENT_SOURCES}
|
|
|
|
xgettext ${XGETTEXT_ARGS} ${PARENT_SOURCES} -o $@
|
|
|
|
|
|
|
|
%.mo: %.po
|
|
|
|
msgfmt -c -o $@ $<
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
install: ${TARGET_MOS}
|
|
|
|
mkdir -p $(DESTDIR)/${LOCALEDIR}
|
|
|
|
for lang in ${LANGS} ; do \
|
|
|
|
mkdir -p ${DESTDIR}/${LOCALEDIR}/$${lang}/LC_MESSAGES ; \
|
|
|
|
install -m 644 $${lang}.mo ${DESTDIR}/${LOCALEDIR}/$${lang}/LC_MESSAGES/${NAME}.mo ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2006-11-04 21:34:47 +00:00
|
|
|
rm -f *.mo Make.rules
|