]> git.ipfire.org Git - thirdparty/glibc.git/blame - intl/Makefile
2.5-18.1
[thirdparty/glibc.git] / intl / Makefile
CommitLineData
0ecb606c 1# Copyright (C) 1995-2003, 2005 Free Software Foundation, Inc.
91c7b85d 2# This file is part of the GNU C Library.
41cfadd6 3
91c7b85d 4# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
41cfadd6 8
91c7b85d
RM
9# The GNU C Library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12# Lesser General Public License for more details.
41cfadd6 13
41bdb6e2
AJ
14# You should have received a copy of the GNU Lesser General Public
15# License along with the GNU C Library; if not, write to the Free
16# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17# 02111-1307 USA.
0c5ecdc4
UD
18
19# Makefile for intl subdirectory: message handling code from GNU gettext.
41cfadd6 20
24906b43 21subdir = intl
91c7b85d
RM
22headers = libintl.h
23routines = bindtextdom dcgettext dgettext gettext \
abbffdf9 24 dcigettext dcngettext dngettext ngettext \
dd9423a6
UD
25 finddomain loadmsgcat localealias textdomain
26aux = l10nflist explodename plural plural-exp hash-string
5cb5cfa2 27distribute = gmo.h gettextP.h hash-string.h loadinfo.h locale.alias \
0ecb606c
JJ
28 plural.y plural-exp.h plural-eval.c po2test.sed \
29 tst-gettext.sh \
30 tst-translit.sh translit.po \
31 tst-gettext2.sh tstlang1.po tstlang2.po \
32 tst-codeset.sh tstcodeset.po \
33 tst-gettext3.sh \
34 tst-gettext4.sh tst-gettext4-de.po tst-gettext4-fr.po \
35 tst-gettext5.sh
abbffdf9 36
0ecb606c
JJ
37include ../Makeconfig
38
39multithread-test-srcs := tst-gettext4 tst-gettext5
40test-srcs := tst-gettext tst-translit tst-gettext2 tst-codeset tst-gettext3
41ifeq ($(have-thread-library),yes)
42test-srcs += $(multithread-test-srcs)
43endif
1267f93e 44tests = tst-ngettext
abbffdf9
UD
45
46before-compile = $(objpfx)msgs.h
7a12c6bb 47
4a33c2f5 48install-others = $(inst_msgcatdir)/locale.alias
24906b43 49
b025588a 50generated = msgs.h mtrace-tst-gettext tst-gettext.mtrace
cdfb970d 51generated-dirs := domaindir localedir
a1d84548 52
ae113383 53ifneq (no,$(BISON))
abbffdf9 54plural.c: plural.y
ae113383 55 $(BISON) $(BISONFLAGS) $@ $^
abbffdf9 56ifeq ($(with-cvs),yes)
ae113383 57 test ! -d CVS || cvs $(CVSOPTS) commit -m'$(BISON) $(BISONFLAGS) $@ $^' $@
abbffdf9 58endif
199745d1 59endif
abbffdf9
UD
60$(objpfx)plural.o: plural.c
61
91c7b85d 62include ../Rules
24906b43 63
955ebce4 64ifeq (no,$(cross-compiling))
7d4de961 65ifeq (yes,$(build-shared))
328c5f65 66ifneq ($(strip $(MSGFMT)),:)
c44a663d 67tests: $(objpfx)tst-translit.out $(objpfx)tst-gettext2.out \
0ecb606c
JJ
68 $(objpfx)tst-codeset.out $(objpfx)tst-gettext3.out
69ifeq ($(have-thread-library),yes)
70tests: $(objpfx)tst-gettext4.out $(objpfx)tst-gettext5.out
71endif
89e89345
AJ
72ifneq (no,$(PERL))
73tests: $(objpfx)mtrace-tst-gettext
74endif
d4eaa8bb 75endif
6baa3368 76$(objpfx)mtrace-tst-gettext: $(objpfx)tst-gettext.out
55e2d5c7 77 $(common-objpfx)malloc/mtrace $(objpfx)tst-gettext.mtrace > $@
4ab8e75a 78$(objpfx)tst-gettext.out: tst-gettext.sh $(objpfx)tst-gettext
55e2d5c7
UD
79 $(SHELL) -e $< $(common-objpfx) $(common-objpfx)intl/ \
80 $(objpfx)tst-gettext.mtrace
4ab8e75a 81$(objpfx)tst-translit.out: tst-translit.sh $(objpfx)tst-translit
9f835f5f 82 $(SHELL) -e $< $(common-objpfx) $(common-objpfx)intl/
cdfb970d 83$(objpfx)tst-gettext2.out: tst-gettext2.sh $(objpfx)tst-gettext2
111bb972 84 $(SHELL) -e $< $(common-objpfx) $(common-objpfx)intl/
c44a663d
UD
85$(objpfx)tst-codeset.out: tst-codeset.sh $(objpfx)tst-codeset
86 $(SHELL) -e $< $(common-objpfx) $(common-objpfx)intl/
0ecb606c
JJ
87$(objpfx)tst-gettext3.out: tst-gettext3.sh $(objpfx)tst-gettext3
88 $(SHELL) -e $< $(common-objpfx) $(common-objpfx)intl/
89$(objpfx)tst-gettext4.out: tst-gettext4.sh $(objpfx)tst-gettext4
90 $(SHELL) -e $< $(common-objpfx) '$(run-program-prefix)' $(common-objpfx)intl/
91$(objpfx)tst-gettext5.out: tst-gettext5.sh $(objpfx)tst-gettext5
92 $(SHELL) -e $< $(common-objpfx) '$(run-program-prefix)' $(common-objpfx)intl/
7d4de961 93endif
955ebce4 94endif
abbffdf9
UD
95
96$(objpfx)msgs.h: po2test.sed ../po/de.po
4974d2b2 97 $(make-target-directory)
40c90e00 98 LC_ALL=C sed -f $^ > $@
abbffdf9
UD
99
100CFLAGS-tst-gettext.c = -DTESTSTRS_H=\"$(objpfx)msgs.h\"
4ab8e75a 101CFLAGS-tst-translit.c = -DOBJPFX=\"$(objpfx)\"
0ecb606c 102CFLAGS-tst-gettext2.c = -DOBJPFX=\"$(objpfx)\"
c44a663d 103CFLAGS-tst-codeset.c = -DOBJPFX=\"$(objpfx)\"
0ecb606c
JJ
104CFLAGS-tst-gettext3.c = -DOBJPFX=\"$(objpfx)\"
105CFLAGS-tst-gettext4.c = -DOBJPFX=\"$(objpfx)\"
106CFLAGS-tst-gettext5.c = -DOBJPFX=\"$(objpfx)\"
107
108ifeq ($(have-thread-library),yes)
109ifeq (yes,$(build-shared))
110$(addprefix $(objpfx),$(multithread-test-srcs)): $(shared-thread-library)
111else
112$(addprefix $(objpfx),$(multithread-test-srcs)): $(static-thread-library)
113endif
114ifeq (yes,$(build-bounded))
115$(multithread-test-srcs:%=$(objpfx)%-bp): $(bounded-thread-library)
116endif
117endif
abbffdf9 118
c6df09ad 119$(objpfx)tst-translit.out: $(objpfx)tst-gettext.out
8f13e320
UD
120$(objpfx)tst-gettext2.out: $(objpfx)tst-gettext.out
121$(objpfx)tst-codeset.out: $(objpfx)tst-gettext.out
0ecb606c
JJ
122$(objpfx)tst-gettext3.out: $(objpfx)tst-gettext.out
123$(objpfx)tst-gettext4.out: $(objpfx)tst-gettext.out
124$(objpfx)tst-gettext5.out: $(objpfx)tst-gettext.out
c6df09ad 125
4a4d50f3 126CPPFLAGS += -D'LOCALEDIR="$(msgcatdir)"' \
835bf8e0 127 -D'LOCALE_ALIAS_PATH="$(msgcatdir)"'
ae113383 128BISONFLAGS = --yacc --name-prefix=__gettext --output
7a12c6bb 129
4a33c2f5 130$(inst_msgcatdir)/locale.alias: locale.alias $(+force)
7a12c6bb 131 $(do-install)