]> git.ipfire.org Git - thirdparty/glibc.git/blob - nscd/Makefile
Update.
[thirdparty/glibc.git] / nscd / Makefile
1 # Copyright (C) 1998, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
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
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.
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
12 # Lesser General Public License for more details.
13
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.
18
19 #
20 # Sub-makefile for nscd portion of the library.
21 #
22 subdir := nscd
23
24 routines := nscd_getpw_r nscd_getgr_r nscd_gethst_r
25 aux := nscd_helper
26
27 include ../Makeconfig
28
29 # To find xmalloc.c
30 vpath %.c ../locale/programs
31
32 nscd-modules := nscd connections pwdcache getpwnam_r getpwuid_r grpcache \
33 getgrnam_r getgrgid_r hstcache gethstbyad_r gethstbynm2_r \
34 dbg_log nscd_conf nscd_stat cache mem xmalloc xstrdup
35
36 ifeq ($(have-thread-library),yes)
37
38 others := nscd_nischeck
39 ifneq (yesyes,$(have-fpie)$(build-shared))
40 others += nscd
41 endif
42 install-sbin := nscd nscd_nischeck
43
44 extra-objs := $(nscd-modules:=.o) nscd_nischeck.o
45
46 endif
47
48 ifeq (yes,$(build-static-nss))
49 otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
50 $(resolvobjdir)/libresolv.a
51 endif
52
53 distribute := nscd.h nscd-client.h dbg_log.h \
54 $(addsuffix .c, $(filter-out xmalloc, $(nscd-modules))) \
55 nscd_nischeck.c TODO nscd.conf nscd.init nscd_proto.h \
56 nscd-types.h
57
58 include ../Rules
59
60 CFLAGS-nscd_getpw_r.c = -fexceptions
61 CFLAGS-nscd_getgr_r.c = -fexceptions
62 CFLAGS-nscd_gethst_r.c = -fexceptions
63
64 ifeq (yesyes,$(have-fpie)$(build-shared))
65 CFLAGS-nscd.c = -fpie
66 CFLAGS-connections.c = -fpie
67 CFLAGS-pwdcache.c = -fpie
68 CFLAGS-getpwnam_r.c = -fpie
69 CFLAGS-getpwuid_r.c = -fpie
70 CFLAGS-grpcache.c = -fpie
71 CFLAGS-getgrnam_r.c = -fpie
72 CFLAGS-getgrgid_r.c = -fpie
73 CFLAGS-hstcache.c = -fpie
74 CFLAGS-gethstbyad_r.c = -fpie
75 CFLAGS-gethstbynm2_r.c = -fpie
76 CFLAGS-dbg_log.c = -fpie
77 CFLAGS-nscd_conf.c = -fpie
78 CFLAGS-nscd_stat.c = -fpie
79 CFLAGS-cache.c = -fpie
80 CFLAGS-xmalloc.c = -fpie
81 CFLAGS-xstrdup.c = -fpie
82 CFLAGS-mem.c = -fpie
83
84 $(objpfx)nscd: $(addprefix $(objpfx),$(nscd-modules:=.o))
85 $(LINK.o) -pie -Wl,-O1 \
86 $(sysdep-LDFLAGS) $(config-LDFLAGS) \
87 $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \
88 $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
89 $(LDFLAGS) $(LDFLAGS-$(@F)) \
90 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link) \
91 -o $@ $^ $(common-objpfx)libc_nonshared.a
92 endif
93
94 # This makes sure -DNOT_IN_libc is passed for all these modules.
95 cpp-srcs-left := $(nscd-modules:=.c)
96 lib := nonlib
97 include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
98
99 $(objpfx)nscd: $(nscd-modules:%=$(objpfx)%.o)
100 $(objpfx)nscd_nischeck: $(objpfx)nscd_nischeck.o
101
102 ifeq ($(build-shared),yes)
103 $(objpfx)nscd: $(shared-thread-library) $(common-objpfx)nis/libnsl.so
104 $(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.so
105 else
106 $(objpfx)nscd: $(static-thread-library) $(common-objpfx)nis/libnsl.a
107 $(objpfx)nscd_nischeck: $(common-objpfx)nis/libnsl.a
108 endif