mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00
28 lines
1,006 B
Makefile
28 lines
1,006 B
Makefile
# $Id$
|
|
# ----------------------------------------------------------------------
|
|
# Copyright (c) 2004, 2005 NOVELL (All rights reserved)
|
|
#
|
|
# 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.
|
|
# ----------------------------------------------------------------------
|
|
all:
|
|
|
|
# As translations get added, add them to the LANGS variable to get
|
|
# made/installed.
|
|
|
|
# DISABLED LANGS = ar
|
|
LANGS=bg bn bs ca cs cy da de el en_GB en_US es et fi fr gl he hi hr hu id it ja ka km ko lo lt nb nl pa pl pt_BR pt ro ru sk sl sr sv ta tr uk vi zh_CN zh_TW
|
|
|
|
|
|
COMMONDIR=../../common/
|
|
|
|
include Make.rules
|
|
|
|
XGETTEXT_ARGS+=--language=C --keyword=_ $(shell if [ -f ${NAME}.pot ] ; then echo -n -j ; fi)
|
|
|
|
COMMONDIR_EXISTS=$(strip $(shell [ -d ${COMMONDIR} ] && echo true))
|
|
ifeq ($(COMMONDIR_EXISTS), true)
|
|
Make.rules: $(COMMONDIR)/Make-po.rules
|
|
ln -f $(COMMONDIR)/Make-po.rules $@
|
|
endif
|