Replace FSF snail mail address with URLs.
[glibc.git] / iconv / Makefile
blob87545bf2fefef4c6145a2f4d41a5344cbffdd9aa
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/>.
20 # Makefile for iconv.
22 subdir := iconv
24 include ../Makeconfig
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
30 routines += gconv_dl
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 distribute = gconv_builtin.h gconv_int.h loop.c skeleton.c iconv_prog.h \
49 iconv_charmap.c dummy-repertoire.c gconv_charset.h strtab.c \
50 iconvconfig.h
52 others = iconv_prog iconvconfig
53 install-others-programs = $(inst_bindir)/iconv
54 install-sbin = iconvconfig
56 CFLAGS-gconv_cache.c += -DGCONV_DIR='"$(gconvdir)"'
57 CFLAGS-gconv_conf.c = -DGCONV_PATH='"$(gconvdir)"'
58 CFLAGS-iconvconfig.c = -DGCONV_PATH='"$(gconvdir)"' -DGCONV_DIR='"$(gconvdir)"'
60 CPPFLAGS-iconv_prog = -DNOT_IN_libc
61 CPPFLAGS-iconv_charmap = -DNOT_IN_libc
62 CPPFLAGS-iconvconfig = -DNOT_IN_libc
63 CPPFLAGS-linereader = -DNOT_IN_libc
64 CPPFLAGS-strtab = -DNOT_IN_libc
65 CPPFLAGS-charmap = -DNOT_IN_libc
66 CPPFLAGS-charmap-dir = -DNOT_IN_libc
68 include ../Rules
70 $(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force)
71 $(do-install-program)
73 $(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o)
74 $(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o)
76 ifneq ($(cross-compiling),yes)
77 xtests: test-iconvconfig
78 endif
80 .PHONY: test-iconvconfig
81 test-iconvconfig: /dev/null $(objpfx)iconvconfig
82 tmp=$(objpfx)gconv-modules.cache.$$$$; \
83 rm -f $$tmp; \
84 $(make-test-out) --output=$$tmp --nostdlib $(inst_gconvdir) && \
85 cmp $$tmp $(inst_gconvdir)/gconv-modules.cache && \
86 rm -f $$tmp