1 # Copyright (C) 1991-2022 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
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.
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
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <https://www.gnu.org/licenses/>.
19 # Makefile for locales.
25 headers
= langinfo.h locale.h bits
/locale.h \
26 bits
/types
/locale_t.h bits
/types
/__locale_t.h
27 routines
= setlocale findlocale loadlocale loadarchive \
28 localeconv nl_langinfo nl_langinfo_l mb_cur_max \
29 newlocale duplocale freelocale uselocale
30 tests
= tst-C-locale tst-locname tst-duplocale
31 tests-container
= tst-localedef-path-norm
32 categories
= ctype messages monetary numeric time paper name \
33 address telephone measurement identification collate
34 aux
= $(categories
:%=lc-
%) $(categories
:%=C-
%) SYS_libc C_name \
35 xlocale localename global-locale coll-lookup
36 others
= localedef locale
37 #others-static = localedef locale
38 install-bin
= localedef locale
39 extra-objs
= $(localedef-modules
:=.o
) $(localedef-aux
:=.o
) \
40 $(locale-modules
:=.o
) $(lib-modules
:=.o
)
41 generated
+= C-translit.h
42 before-compile
+= $(objpfx
)C-translit.h
44 extra-libs
= libBrokenLocale
45 extra-libs-others
= $(extra-libs
)
47 libBrokenLocale-routines
= broken_cur_max
49 subdir-dirs
= programs
50 vpath
%.c programs ..
/crypt
52 vpath
%.gperf programs
54 localedef-modules
:= localedef
$(categories
:%=ld-
%) \
55 charmap linereader locfile \
58 locale-modules
:= locale locale-spec
59 lib-modules
:= charmap-dir simple-hash xmalloc xstrdup \
60 record-status xasprintf
64 GPERFFLAGS
= -acCgopt
-k1
,2,5,9,$$ -L ANSI-C
66 ifeq ($(run-built-tests
),yes
)
67 tests-special
+= $(objpfx
)tst-locale-locpath.out
72 CFLAGS-md5.c
+= -I..
/crypt
74 programs
/%-kw.h
: programs
/%-kw.gperf
76 && $(GPERF
) $(GPERFFLAGS
) -N
$(@F
:-kw.h
=_hash
) $(<F
) > $(@F
).new
79 $(objpfx
)localedef
: $(localedef-modules
:%=$(objpfx
)%.o
)
80 $(objpfx
)localedef
: $(localedef-aux
:%=$(objpfx
)%.o
)
81 $(objpfx
)locale
: $(locale-modules
:%=$(objpfx
)%.o
)
82 $(objpfx
)localedef
$(objpfx
)locale
: $(lib-modules
:%=$(objpfx
)%.o
)
84 $(objpfx
)C-translit.h
: C-translit.h.in gen-translit.py
85 $(make-target-directory
)
86 $(PYTHON
) gen-translit.py
< $< > $@.tmp
89 # The path to the compiled binary locale archive or compiled locales,
90 # along with the parent path to the source locales and source
92 localepath
= "$(complocaledir):$(i18ndir)"
94 # -Iprograms doesn't really belong here, but this gets it at the head
95 # of the list instead of the tail, where CPPFLAGS-$(lib) gets added.
96 # We need it before the standard -I's to see programs/config.h first.
97 locale-CPPFLAGS
= -DCOMPLOCALEDIR
='"$(complocaledir)"' \
98 -DLOCALE_ALIAS_PATH
='"$(localedir)"' \
101 CPPFLAGS-locale-programs
= -DLOCALE_PATH
='$(localepath)' \
102 -DCHARMAP_PATH
='"$(i18ndir)/charmaps"' \
103 -DREPERTOIREMAP_PATH
='"$(i18ndir)/repertoiremaps"' \
104 -DLOCSRCDIR
='"$(i18ndir)/locales"'
106 CFLAGS-charmap.c
+= -Wno-write-strings
-Wno-char-subscripts
107 CFLAGS-locfile.c
+= -Wno-write-strings
-Wno-char-subscripts
108 CFLAGS-charmap-dir.c
+= -Wno-write-strings
110 # Set libof-* for each routine.
111 cpp-srcs-left
:= $(localedef-modules
) $(localedef-aux
) $(locale-modules
) \
113 lib
:= locale-programs
114 include $(patsubst %,$(..
)libof-iterator.mk
,$(cpp-srcs-left
))
116 $(objpfx
)tst-locale-locpath.out
: tst-locale-locpath.sh
$(objpfx
)locale
117 $(SHELL
) $< '$(common-objpfx)' '$(test-wrapper-env)' '$(run-program-env)' > $@
; \