]> sourceware.org Git - glibc.git/blame - iconv/Makefile
Fix leading whitespaces.
[glibc.git] / iconv / Makefile
CommitLineData
568035b7 1# Copyright (C) 1997-2013 Free Software Foundation, Inc.
6973fc01
UD
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
41bdb6e2
AJ
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.
6973fc01
UD
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
41bdb6e2 12# Lesser General Public License for more details.
6973fc01 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
6973fc01
UD
17
18#
19# Makefile for iconv.
20#
21subdir := iconv
22
8619129f
UD
23include ../Makeconfig
24
6973fc01
UD
25headers = iconv.h gconv.h
26routines = iconv_open iconv iconv_close \
27 gconv_open gconv gconv_close gconv_db gconv_conf \
6b98979f 28 gconv_builtin gconv_simple gconv_trans gconv_cache
8619129f 29routines += gconv_dl
8619129f 30
dd9423a6 31vpath %.c ../locale/programs ../intl
93693c4d
UD
32
33iconv_prog-modules = iconv_charmap charmap charmap-dir linereader \
34 dummy-repertoire simple-hash xstrdup xmalloc
dd9423a6 35iconvconfig-modules = strtab xmalloc hash-string
7dbadfc5 36extra-objs = $(iconv_prog-modules:=.o) $(iconvconfig-modules:=.o)
93693c4d
UD
37CFLAGS-iconv_prog.c = -I../locale/programs
38CFLAGS-iconv_charmap.c = -I../locale/programs
39CFLAGS-dummy-repertoire.c = -I../locale/programs
40CFLAGS-charmap.c = -DCHARMAP_PATH='"$(i18ndir)/charmaps"' \
194c5f8d 41 -DDEFAULT_CHARMAP=null_pointer -DNEED_NULL_POINTER
47e8b443 42CFLAGS-linereader.c = -DNO_TRANSLITERATION
d648d845 43CFLAGS-simple-hash.c = -I../locale
93693c4d 44
1b14353e 45tests = tst-iconv1 tst-iconv2 tst-iconv3 tst-iconv4 tst-iconv5
c63b67bd 46
6b98979f 47others = iconv_prog iconvconfig
ff40792e 48install-others-programs = $(inst_bindir)/iconv
9fcddc2b 49install-sbin = iconvconfig
fb5663ca 50
8e294940 51CFLAGS-gconv_cache.c += -DGCONV_DIR='"$(gconvdir)"'
6973fc01 52CFLAGS-gconv_conf.c = -DGCONV_PATH='"$(gconvdir)"'
6b98979f 53CFLAGS-iconvconfig.c = -DGCONV_PATH='"$(gconvdir)"' -DGCONV_DIR='"$(gconvdir)"'
6973fc01 54
3ba06713 55CPPFLAGS-iconv_prog = -DNOT_IN_libc
51d46f73
UD
56CPPFLAGS-iconv_charmap = -DNOT_IN_libc
57CPPFLAGS-iconvconfig = -DNOT_IN_libc
3ba06713 58CPPFLAGS-linereader = -DNOT_IN_libc
51d46f73
UD
59CPPFLAGS-strtab = -DNOT_IN_libc
60CPPFLAGS-charmap = -DNOT_IN_libc
3ba06713 61CPPFLAGS-charmap-dir = -DNOT_IN_libc
51d46f73 62
6973fc01 63include ../Rules
fb5663ca 64
73237de3 65$(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force)
9eb2730e 66 $(do-install-program)
93693c4d
UD
67
68$(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o)
6b98979f 69$(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o)
ff06ca8d 70
03ac099f 71ifeq ($(run-built-tests),yes)
ff06ca8d
RM
72xtests: test-iconvconfig
73endif
74
75.PHONY: test-iconvconfig
76test-iconvconfig: /dev/null $(objpfx)iconvconfig
77 tmp=$(objpfx)gconv-modules.cache.$$$$; \
78 rm -f $$tmp; \
79 $(make-test-out) --output=$$tmp --nostdlib $(inst_gconvdir) && \
80 cmp $$tmp $(inst_gconvdir)/gconv-modules.cache && \
81 rm -f $$tmp
This page took 0.351495 seconds and 5 git commands to generate.