]> sourceware.org Git - glibc.git/blob - iconv/Makefile
de9d964ed3c762bf1a3a650dbd12828b09400e65
[glibc.git] / iconv / Makefile
1 # Copyright (C) 1997-2024 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 # <https://www.gnu.org/licenses/>.
17
18 #
19 # Makefile for iconv.
20 #
21 subdir := iconv
22
23 include ../Makeconfig
24
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
30
31 vpath %.c ../locale/programs ../intl
32
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
45
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
59
60 test-srcs := \
61 tst-translit-mchar \
62 # test-srcs
63
64 tests-internal = \
65 tst-iconv-sticky-input-error \
66 # tests-internal
67
68 others = iconv_prog iconvconfig
69 install-others-programs = $(inst_bindir)/iconv
70 install-sbin = iconvconfig
71
72 CFLAGS-gconv_cache.c += -DGCONV_DIR='"$(gconvdir)"'
73 CFLAGS-gconv_conf.c += -DGCONV_PATH='"$(gconvdir)"'
74 CFLAGS-iconvconfig.c += -DGCONV_PATH='"$(gconvdir)"' -DGCONV_DIR='"$(gconvdir)"'
75
76 # Set libof-* for each routine.
77 cpp-srcs-left := $(iconv_prog-modules) $(iconvconfig-modules)
78 lib := iconvprogs
79 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
80
81 ifeq ($(run-built-tests),yes)
82 xtests-special += $(objpfx)test-iconvconfig.out
83 tests-special += \
84 $(objpfx)tst-iconv_prog-buffer-large.out \
85 $(objpfx)tst-iconv_prog-buffer-tiny.out \
86 $(objpfx)tst-iconv_prog-buffer.out \
87 $(objpfx)tst-iconv_prog.out \
88 $(objpfx)tst-translit-mchar.out \
89 # tests-special
90 endif
91
92 # Make a copy of the file because gconv module names are constructed
93 # relative to the path of the configuration file.
94 $(objpfx)gconv-modules: test-gconv-modules
95 cp $< $@
96
97 $(objpfx)tst-iconv-mt: $(shared-thread-library)
98
99 ifeq (yes,$(build-shared))
100 tests += tst-gconv-init-failure
101 modules-names += tst-gconv-init-failure-mod
102 modules-names-tests += tst-gconv-init-failure-mod
103 extra-test-objs += tst-gconv-init-failure-mod.os
104 $(objpfx)tst-gconv-init-failure-mod.so: $(libsupport)
105 $(objpfx)tst-gconv-init-failure.out: \
106 $(objpfx)gconv-modules $(objpfx)tst-gconv-init-failure-mod.so
107 endif
108
109 generated-dirs += tst-translit
110
111 include ../Rules
112
113 ifeq ($(run-built-tests),yes)
114 # We have to generate locales (list sorted alphabetically)
115 LOCALES := \
116 C.UTF-8 \
117 en_US.UTF-8 \
118 # LOCALES
119 include ../gen-locales.mk
120
121 $(objpfx)tst-iconv-opt.out: $(gen-locales)
122 $(objpfx)tst-iconv9.out: $(gen-locales)
123 endif
124
125 $(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force)
126 $(do-install-program)
127
128 $(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o)
129 $(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o)
130
131 $(objpfx)test-iconvconfig.out: $(objpfx)iconvconfig
132 (set -e; \
133 tmp=$(objpfx)gconv-modules.cache.$$$$; \
134 rm -f $$tmp; \
135 $(run-program-prefix) $(objpfx)iconvconfig \
136 --output=$$tmp --nostdlib $(inst_gconvdir); \
137 cmp $$tmp $(inst_gconvdir)/gconv-modules.cache; \
138 rm -f $$tmp) > $@; \
139 $(evaluate-test)
140
141 $(objpfx)tst-iconv_prog.out: tst-iconv_prog.sh $(objpfx)iconv_prog
142 $(BASH) $< $(common-objdir) '$(test-wrapper-env)' \
143 '$(run-program-env)' > $@; \
144 $(evaluate-test)
145
146 $(objpfx)tst-translit-mchar.out: tst-translit-mchar.sh \
147 $(objpfx)tst-translit-mchar \
148 tst-translit-locale
149 $(SHELL) $< $(common-objpfx) '$(run-program-prefix-before-env)' \
150 '$(run-program-env)' '$(run-program-prefix-after-env)' \
151 $< > $@; \
152 $(evaluate-test)
153
154 $(objpfx)tst-iconv_prog-buffer.out: \
155 tst-iconv_prog-buffer.sh $(objpfx)iconv_prog
156 $(BASH) $< $(common-objdir) '$(run-program-prefix)' > $@; \
157 $(evaluate-test)
158 $(objpfx)tst-iconv_prog-buffer-tiny.out: \
159 tst-iconv_prog-buffer.sh $(objpfx)iconv_prog
160 $(BASH) $< $(common-objdir) '$(run-program-prefix)' \
161 '--buffer-size=1' > $@; \
162 $(evaluate-test)
163 $(objpfx)tst-iconv_prog-buffer-large.out: \
164 tst-iconv_prog-buffer.sh $(objpfx)iconv_prog
165 $(BASH) $< $(common-objdir) '$(run-program-prefix)' '' '22' > $@; \
166 $(evaluate-test)
This page took 0.049111 seconds and 6 git commands to generate.