]> git.ipfire.org Git - thirdparty/glibc.git/blame - resolv/Makefile
Enumerate tests with special rules in tests-special variable.
[thirdparty/glibc.git] / resolv / Makefile
CommitLineData
d4697bc9 1# Copyright (C) 1994-2014 Free Software Foundation, Inc.
28f540f4
RM
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.
28f540f4
RM
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.
28f540f4 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/>.
28f540f4
RM
17
18#
19# Sub-makefile for resolv portion of the library.
20#
21subdir := resolv
22
a5f891ac
JM
23include ../Makeconfig
24
c6d80202
RM
25headers := resolv.h \
26 netdb.h bits/netdb.h \
27 arpa/nameser.h arpa/nameser_compat.h \
6500dff6 28 sys/bitypes.h
28f540f4 29
b43b13ac 30routines := herror inet_addr inet_ntop inet_pton nsap_addr res_init \
270d9d47 31 res_hconf res_libc res-state
282d8743 32
37f02b1d 33tests = tst-aton tst-leaks tst-inet_ntop
2ed2dc18 34xtests = tst-leaks2
b062f051 35
2ed2dc18 36generate := mtrace-tst-leaks tst-leaks.mtrace tst-leaks2.mtrace
0696c2c0 37
e10546cb
AJ
38extra-libs := libresolv libnss_dns
39ifeq ($(have-thread-library),yes)
40extra-libs += libanl
3897dbb6 41routines += gai_sigqueue
e10546cb 42endif
f0f1bf85 43extra-libs-others = $(extra-libs)
845dcb57 44libresolv-routines := gethnamaddr res_comp res_debug \
569c558c 45 res_data res_mkquery res_query res_send \
b43b13ac
UD
46 inet_net_ntop inet_net_pton inet_neta base64 \
47 ns_parse ns_name ns_netint ns_ttl ns_print \
cd5743fd 48 ns_samedomain ns_date
28f540f4 49
2ace5721
UD
50libanl-routines := gai_cancel gai_error gai_misc gai_notify gai_suspend \
51 getaddrinfo_a
52
fd26970f 53subdir-dirs = nss_dns
68dbb3a6
UD
54vpath %.c nss_dns
55
28977c2c 56libnss_dns-routines := dns-host dns-network dns-canon
40a55d20 57libnss_dns-inhibit-o = $(filter-out .os,$(object-suffixes))
3ff42526
PP
58ifeq ($(build-static-nss),yes)
59routines += $(libnss_dns-routines) $(libresolv-routines)
60static-only-routines += $(libnss_dns-routines) $(libresolv-routines)
5107cf1d 61endif
68dbb3a6 62
e10546cb 63ifeq (yesyes,$(build-shared)$(have-thread-library))
2ace5721
UD
64tests: $(objpfx)ga_test
65endif
66
f214606a
JM
67ifeq ($(run-built-tests),yes)
68ifneq (no,$(PERL))
69tests-special += $(objpfx)mtrace-tst-leaks
70xtests-special += $(objpfx)mtrace-tst-leaks2
71endif
72endif
73
f08e9a26 74generated += mtrace-tst-leaks tst-leaks.mtrace \
2ed2dc18 75 mtrace-tst-leaks2 tst-leaks2.mtrace
434190c0 76
28f540f4 77include ../Rules
0793d348 78
282d8743
RM
79CPPFLAGS += -Dgethostbyname=res_gethostbyname \
80 -Dgethostbyname2=res_gethostbyname2 \
81 -Dgethostbyaddr=res_gethostbyaddr \
82 -Dgetnetbyname=res_getnetbyname \
83 -Dgetnetbyaddr=res_getnetbyaddr
84
44f0a71e
UD
85ifeq (yes,$(have-ssp))
86CFLAGS-libresolv += -fstack-protector
87endif
443f7933
UD
88CFLAGS-res_hconf.c = -fexceptions
89
282d8743 90# The BIND code elicits some harmless warnings.
66ac0abe 91+cflags += -Wno-strict-prototypes -Wno-write-strings
f65fd747 92
68dbb3a6 93# The DNS NSS modules needs the resolver.
fab7ce3f 94$(objpfx)libnss_dns.so: $(objpfx)libresolv.so
2ace5721
UD
95
96# The asynchronous name lookup code needs the thread library.
fab7ce3f 97$(objpfx)libanl.so: $(shared-thread-library)
2ace5721
UD
98
99$(objpfx)ga_test: $(objpfx)libanl.so $(shared-thread-library)
dd174748
RM
100
101$(objpfx)tst-leaks: $(objpfx)libresolv.so
102tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace
103$(objpfx)mtrace-tst-leaks: $(objpfx)tst-leaks.out
f0881698
JM
104 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@; \
105 $(evaluate-test)
2ed2dc18
UD
106
107tst-leaks2-ENV = MALLOC_TRACE=$(objpfx)tst-leaks2.mtrace
108$(objpfx)mtrace-tst-leaks2: $(objpfx)tst-leaks2.out
f0881698
JM
109 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks2.mtrace > $@; \
110 $(evaluate-test)