1 # Copyright (C) 1997,1998,2000-2004,2007,2009,2012
2 # Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
26 headers
= iconv.h gconv.h
27 routines
= iconv_open iconv iconv_close \
28 gconv_open gconv gconv_close gconv_db gconv_conf \
29 gconv_builtin gconv_simple gconv_trans gconv_cache
32 vpath
%.c ..
/locale
/programs ..
/intl
34 iconv_prog-modules
= iconv_charmap charmap charmap-dir linereader \
35 dummy-repertoire simple-hash xstrdup xmalloc
36 iconvconfig-modules
= strtab xmalloc 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
= tst-iconv1 tst-iconv2 tst-iconv3 tst-iconv4 tst-iconv5
48 others
= iconv_prog iconvconfig
49 install-others-programs
= $(inst_bindir
)/iconv
50 install-sbin
= iconvconfig
52 CFLAGS-gconv_cache.c
+= -DGCONV_DIR
='"$(gconvdir)"'
53 CFLAGS-gconv_conf.c
= -DGCONV_PATH
='"$(gconvdir)"'
54 CFLAGS-iconvconfig.c
= -DGCONV_PATH
='"$(gconvdir)"' -DGCONV_DIR
='"$(gconvdir)"'
56 CPPFLAGS-iconv_prog
= -DNOT_IN_libc
57 CPPFLAGS-iconv_charmap
= -DNOT_IN_libc
58 CPPFLAGS-iconvconfig
= -DNOT_IN_libc
59 CPPFLAGS-linereader
= -DNOT_IN_libc
60 CPPFLAGS-strtab
= -DNOT_IN_libc
61 CPPFLAGS-charmap
= -DNOT_IN_libc
62 CPPFLAGS-charmap-dir
= -DNOT_IN_libc
66 $(inst_bindir
)/iconv
: $(objpfx
)iconv_prog
$(+force)
69 $(objpfx
)iconv_prog
: $(iconv_prog-modules
:%=$(objpfx
)%.o
)
70 $(objpfx
)iconvconfig
: $(iconvconfig-modules
:%=$(objpfx
)%.o
)
72 ifneq ($(cross-compiling
),yes
)
73 xtests
: test-iconvconfig
76 .PHONY
: test-iconvconfig
77 test-iconvconfig
: /dev
/null
$(objpfx
)iconvconfig
78 tmp
=$(objpfx
)gconv-modules.cache.
$$$$; \
80 $(make-test-out
) --output
=$$tmp --nostdlib
$(inst_gconvdir
) && \
81 cmp
$$tmp $(inst_gconvdir
)/gconv-modules.cache
&& \