Add thunderx2t99 and thunderx2t99p1 CPU names to tunables list
[glibc.git] / iconv / Makefile
blobfd3575178e214a099e46872b13dfd9d56f29483c
1 # Copyright (C) 1997-2017 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 # <http://www.gnu.org/licenses/>.
19 # Makefile for iconv.
21 subdir := iconv
23 include ../Makeconfig
25 headers = iconv.h gconv.h
26 routines = iconv_open iconv iconv_close \
27 gconv_open gconv gconv_close gconv_db gconv_conf \
28 gconv_builtin gconv_simple gconv_trans gconv_cache
29 routines += gconv_dl
31 vpath %.c ../locale/programs ../intl
33 iconv_prog-modules = iconv_charmap charmap charmap-dir linereader \
34 dummy-repertoire simple-hash xstrdup xmalloc
35 iconvconfig-modules = strtab xmalloc hash-string
36 extra-objs = $(iconv_prog-modules:=.o) $(iconvconfig-modules:=.o)
37 CFLAGS-iconv_prog.c = -I../locale/programs
38 CFLAGS-iconv_charmap.c = -I../locale/programs
39 CFLAGS-dummy-repertoire.c = -I../locale/programs
40 CFLAGS-charmap.c = -DCHARMAP_PATH='"$(i18ndir)/charmaps"' \
41 -DDEFAULT_CHARMAP=null_pointer -DNEED_NULL_POINTER
42 CFLAGS-linereader.c = -DNO_TRANSLITERATION
43 CFLAGS-simple-hash.c = -I../locale
45 tests = tst-iconv1 tst-iconv2 tst-iconv3 tst-iconv4 tst-iconv5 tst-iconv6
47 others = iconv_prog iconvconfig
48 install-others-programs = $(inst_bindir)/iconv
49 install-sbin = iconvconfig
51 CFLAGS-gconv_cache.c += -DGCONV_DIR='"$(gconvdir)"'
52 CFLAGS-gconv_conf.c = -DGCONV_PATH='"$(gconvdir)"'
53 CFLAGS-iconvconfig.c = -DGCONV_PATH='"$(gconvdir)"' -DGCONV_DIR='"$(gconvdir)"'
55 # Set libof-* for each routine.
56 cpp-srcs-left := $(iconv_prog-modules) $(iconvconfig-modules)
57 lib := iconvprogs
58 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
60 ifeq ($(run-built-tests),yes)
61 xtests-special += $(objpfx)test-iconvconfig.out
62 endif
64 # Make a copy of the file because gconv module names are constructed
65 # relative to the path of the configuration file.
66 $(objpfx)gconv-modules: test-gconv-modules
67 cp $< $@
69 ifeq (yes,$(build-shared))
70 tests += tst-gconv-init-failure
71 modules-names += tst-gconv-init-failure-mod
72 modules-names-tests += tst-gconv-init-failure-mod
73 $(objpfx)tst-gconv-init-failure-mod.so: $(libsupport)
74 $(objpfx)tst-gconv-init-failure.out: \
75 $(objpfx)gconv-modules $(objpfx)tst-gconv-init-failure-mod.so
76 endif
78 include ../Rules
80 $(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force)
81 $(do-install-program)
83 $(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o)
84 $(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o)
86 $(objpfx)test-iconvconfig.out: /dev/null $(objpfx)iconvconfig
87 (set -e; \
88 tmp=$(objpfx)gconv-modules.cache.$$$$; \
89 rm -f $$tmp; \
90 $(make-test-out) --output=$$tmp --nostdlib $(inst_gconvdir); \
91 cmp $$tmp $(inst_gconvdir)/gconv-modules.cache; \
92 rm -f $$tmp) > $@; \
93 $(evaluate-test)