resolv: Make _res_opcodes a compat symbol [BZ #31764]
[glibc.git] / iconv / Makefile
blob63afc853ff65967af0cee299b3590b148162e949
1 # Copyright (C) 1997-2024 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 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 gconv_charset
31 vpath %.c ../locale/programs ../intl
33 iconv_prog-modules = iconv_charmap charmap charmap-dir linereader \
34 dummy-repertoire simple-hash xstrdup xmalloc \
35 record-status
36 iconvconfig-modules = strtab xmalloc xasprintf xstrdup hash-string
37 extra-objs = $(iconv_prog-modules:=.o) $(iconvconfig-modules:=.o)
38 CFLAGS-iconv_prog.c += -I../locale/programs
39 CFLAGS-iconv_charmap.c += -I../locale/programs
40 CFLAGS-dummy-repertoire.c += -I../locale/programs
41 CFLAGS-charmap.c += -DCHARMAP_PATH='"$(i18ndir)/charmaps"' \
42 -DDEFAULT_CHARMAP=null_pointer -DNEED_NULL_POINTER
43 CFLAGS-linereader.c += -DNO_TRANSLITERATION
44 CFLAGS-simple-hash.c += -I../locale
46 tests = \
47 tst-iconv1 \
48 tst-iconv2 \
49 tst-iconv3 \
50 tst-iconv4 \
51 tst-iconv5 \
52 tst-iconv6 \
53 tst-iconv7 \
54 tst-iconv8 \
55 tst-iconv9 \
56 tst-iconv-mt \
57 tst-iconv-opt \
58 # tests
60 others = iconv_prog iconvconfig
61 install-others-programs = $(inst_bindir)/iconv
62 install-sbin = iconvconfig
64 CFLAGS-gconv_cache.c += -DGCONV_DIR='"$(gconvdir)"'
65 CFLAGS-gconv_conf.c += -DGCONV_PATH='"$(gconvdir)"'
66 CFLAGS-iconvconfig.c += -DGCONV_PATH='"$(gconvdir)"' -DGCONV_DIR='"$(gconvdir)"'
68 # Set libof-* for each routine.
69 cpp-srcs-left := $(iconv_prog-modules) $(iconvconfig-modules)
70 lib := iconvprogs
71 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
73 ifeq ($(run-built-tests),yes)
74 xtests-special += $(objpfx)test-iconvconfig.out
75 tests-special += $(objpfx)tst-iconv_prog.out
76 endif
78 # Make a copy of the file because gconv module names are constructed
79 # relative to the path of the configuration file.
80 $(objpfx)gconv-modules: test-gconv-modules
81 cp $< $@
83 $(objpfx)tst-iconv-mt: $(shared-thread-library)
85 ifeq (yes,$(build-shared))
86 tests += tst-gconv-init-failure
87 modules-names += tst-gconv-init-failure-mod
88 modules-names-tests += tst-gconv-init-failure-mod
89 extra-test-objs += tst-gconv-init-failure-mod.os
90 $(objpfx)tst-gconv-init-failure-mod.so: $(libsupport)
91 $(objpfx)tst-gconv-init-failure.out: \
92 $(objpfx)gconv-modules $(objpfx)tst-gconv-init-failure-mod.so
93 endif
95 include ../Rules
97 ifeq ($(run-built-tests),yes)
98 # We have to generate locales (list sorted alphabetically)
99 LOCALES := \
100 C.UTF-8 \
101 en_US.UTF-8 \
102 # LOCALES
103 include ../gen-locales.mk
105 $(objpfx)tst-iconv-opt.out: $(gen-locales)
106 $(objpfx)tst-iconv9.out: $(gen-locales)
107 endif
109 $(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force)
110 $(do-install-program)
112 $(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o)
113 $(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o)
115 $(objpfx)test-iconvconfig.out: $(objpfx)iconvconfig
116 (set -e; \
117 tmp=$(objpfx)gconv-modules.cache.$$$$; \
118 rm -f $$tmp; \
119 $(run-program-prefix) $(objpfx)iconvconfig \
120 --output=$$tmp --nostdlib $(inst_gconvdir); \
121 cmp $$tmp $(inst_gconvdir)/gconv-modules.cache; \
122 rm -f $$tmp) > $@; \
123 $(evaluate-test)
125 $(objpfx)tst-iconv_prog.out: tst-iconv_prog.sh $(objpfx)iconv_prog
126 $(BASH) $< $(common-objdir) '$(test-wrapper-env)' \
127 '$(run-program-env)' > $@; \
128 $(evaluate-test)