1 # Copyright (C) 1997-2014 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/>.
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
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
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 CPPFLAGS-iconv_prog
= -DNOT_IN_libc
56 CPPFLAGS-iconv_charmap
= -DNOT_IN_libc
57 CPPFLAGS-iconvconfig
= -DNOT_IN_libc
58 CPPFLAGS-linereader
= -DNOT_IN_libc
59 CPPFLAGS-strtab
= -DNOT_IN_libc
60 CPPFLAGS-charmap
= -DNOT_IN_libc
61 CPPFLAGS-charmap-dir
= -DNOT_IN_libc
63 ifeq ($(run-built-tests
),yes
)
64 xtests-special
+= $(objpfx
)test-iconvconfig.out
69 $(inst_bindir
)/iconv
: $(objpfx
)iconv_prog
$(+force)
72 $(objpfx
)iconv_prog
: $(iconv_prog-modules
:%=$(objpfx
)%.o
)
73 $(objpfx
)iconvconfig
: $(iconvconfig-modules
:%=$(objpfx
)%.o
)
75 $(objpfx
)test-iconvconfig.out
: /dev
/null
$(objpfx
)iconvconfig
77 tmp
=$(objpfx
)gconv-modules.cache.
$$$$; \
79 $(make-test-out
) --output
=$$tmp --nostdlib
$(inst_gconvdir
); \
80 cmp
$$tmp $(inst_gconvdir
)/gconv-modules.cache
; \