Rename xlocale.h to bits/types/__locale_t.h.
[platform/upstream/glibc.git] / locale / Makefile
1 # Copyright (C) 1991-2017 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
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.
8
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.
13
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 # <http://www.gnu.org/licenses/>.
17
18 #
19 #       Makefile for locales.
20 #
21 subdir  := locale
22
23 include ../Makeconfig
24
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 categories      = ctype messages monetary numeric time paper name \
32                   address telephone measurement identification collate
33 aux             = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc C_name \
34                   xlocale localename global-locale coll-lookup
35 others          = localedef locale
36 #others-static  = localedef locale
37 install-bin     = localedef locale
38 extra-objs      = $(localedef-modules:=.o) $(localedef-aux:=.o) \
39                   $(locale-modules:=.o) $(lib-modules:=.o)
40
41 extra-libs      = libBrokenLocale
42 extra-libs-others = $(extra-libs)
43
44 libBrokenLocale-routines = broken_cur_max
45
46 subdir-dirs     = programs
47 vpath %.c programs ../crypt
48 vpath %.h programs
49 vpath %.gperf programs
50
51 localedef-modules       := localedef $(categories:%=ld-%) \
52                            charmap linereader locfile \
53                            repertoire locarchive
54 localedef-aux           := md5
55 locale-modules          := locale locale-spec
56 lib-modules             := charmap-dir simple-hash xmalloc xstrdup
57
58
59 GPERF = gperf
60 GPERFFLAGS = -acCgopt -k1,2,5,9,$$ -L ANSI-C
61
62 include ../Rules
63
64 CFLAGS-md5.c = -I../crypt
65
66 programs/%-kw.h: programs/%-kw.gperf
67         cd programs \
68         && $(GPERF) $(GPERFFLAGS) -N $(@F:-kw.h=_hash) $(<F) > $(@F).new
69         mv -f $@.new $@
70
71 $(objpfx)localedef: $(localedef-modules:%=$(objpfx)%.o)
72 $(objpfx)localedef: $(localedef-aux:%=$(objpfx)%.o)
73 $(objpfx)locale: $(locale-modules:%=$(objpfx)%.o)
74 $(objpfx)localedef $(objpfx)locale: $(lib-modules:%=$(objpfx)%.o)
75
76 C-translit.h: C-translit.h.in gen-translit.pl
77         $(PERL) gen-translit.pl < $< > $@.tmp
78         mv -f $@.tmp $@
79
80 # The path to the compiled binary locale archive or compiled locales,
81 # along with the parent path to the source locales and source
82 # charmaps.
83 localepath = "$(complocaledir):$(i18ndir)"
84
85 # -Iprograms doesn't really belong here, but this gets it at the head
86 # of the list instead of the tail, where CPPFLAGS-$(lib) gets added.
87 # We need it before the standard -I's to see programs/config.h first.
88 locale-CPPFLAGS = -DCOMPLOCALEDIR='"$(complocaledir)"' \
89                   -DLOCALE_ALIAS_PATH='"$(localedir)"' \
90                   -Iprograms
91
92 CPPFLAGS-locale-programs = -DLOCALE_PATH='$(localepath)' \
93                            -DCHARMAP_PATH='"$(i18ndir)/charmaps"' \
94                            -DREPERTOIREMAP_PATH='"$(i18ndir)/repertoiremaps"' \
95                            -DLOCSRCDIR='"$(i18ndir)/locales"'
96
97 CFLAGS-charmap.c = -Wno-write-strings -Wno-char-subscripts
98 CFLAGS-locfile.c = -Wno-write-strings -Wno-char-subscripts
99 CFLAGS-charmap-dir.c = -Wno-write-strings
100
101 # Set libof-* for each routine.
102 cpp-srcs-left := $(localedef-modules) $(localedef-aux) $(locale-modules) \
103                  $(lib-modules)
104 lib := locale-programs
105 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))