Add hidden_def.
[glibc.git] / nscd / Makefile
blob793109972a5c1d4e27e83f95499fbf1aa7b43ea5
1 # Copyright (C) 1998, 2000, 2002, 2003 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, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 # 02111-1307 USA.
20 # Sub-makefile for nscd portion of the library.
22 subdir := nscd
24 routines := nscd_getpw_r nscd_getgr_r nscd_gethst_r
26 include ../Makeconfig
28 # To find xmalloc.c
29 vpath %.c ../locale/programs
31 nscd-modules := nscd connections pwdcache getpwnam_r getpwuid_r grpcache \
32 getgrnam_r getgrgid_r hstcache gethstbyad_r gethstbynm2_r \
33 dbg_log nscd_conf nscd_stat cache xmalloc xstrdup
35 ifeq ($(have-thread-library),yes)
37 others := nscd nscd_nischeck
38 install-sbin := nscd nscd_nischeck
40 extra-objs := $(nscd-modules:=.o) nscd_nischeck.o
42 endif
44 ifeq (yes,$(build-static-nss))
45 otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
46 $(resolvobjdir)/libresolv.a
47 endif
49 distribute := nscd.h nscd-client.h dbg_log.h \
50 $(addsuffix .c, $(filter-out xmalloc, $(nscd-modules))) \
51 nscd_nischeck.c TODO nscd.conf nscd.init nscd_proto.h \
52 nscd-types.h
54 include ../Rules
56 CFLAGS-nscd_getpw_r.c = -fexceptions
57 CFLAGS-nscd_getgr_r.c = -fexceptions
58 CFLAGS-nscd_gethst_r.c = -fexceptions
60 # This makes sure -DNOT_IN_libc is passed for all these modules.
61 cpp-srcs-left := $(nscd-modules:=.c)
62 lib := nonlib
63 include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
65 $(objpfx)nscd: $(nscd-modules:%=$(objpfx)%.o)
66 $(objpfx)nscd_nischeck: $(objpfx)nscd_nischeck.o
68 ifeq ($(build-shared),yes)
69 $(objpfx)nscd: $(shared-thread-library) $(common-objpfx)nis/libnsl.so
70 $(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.so
71 else
72 $(objpfx)nscd: $(static-thread-library) $(common-objpfx)nis/libnsl.a
73 $(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.a
74 endif