]> sourceware.org Git - glibc.git/blame - nss/Makefile
Update.
[glibc.git] / nss / Makefile
CommitLineData
a5fdf99b 1# Copyright (C) 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
5f0e6fc7
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
5# modify it under the terms of the GNU Library General Public License as
6# published by the Free Software Foundation; either version 2 of the
7# 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# Library General Public License for more details.
13
14# You should have received a copy of the GNU Library General Public
26761c28
UD
15# License along with the GNU C Library; see the file COPYING.LIB. If not,
16# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17# Boston, MA 02111-1307, USA.
5f0e6fc7
RM
18
19#
20# Makefile for name service switch.
21#
22subdir := nss
23
a8874ead 24headers := nss.h
5f0e6fc7 25distribute := nsswitch.h XXX-lookup.c getXXbyYY.c getXXbyYY_r.c \
14bab8de 26 getXXent.c getXXent_r.c databases.def \
7e3399b3 27 nsswitch.conf digits_dots.c function.def
5f0e6fc7
RM
28
29# This is the trivial part which goes into libc itself.
a5fdf99b 30routines = nsswitch getnssent getnssent_r digits_dots \
8b801829 31 $(addsuffix -lookup,$(databases))
5f0e6fc7 32
6dbe2837 33# These are the databases that go through nss dispatch.
a8874ead
UD
34# Caution: if you add a database here, you must add its real name
35# in databases.def, too.
a8922de8 36databases = proto service hosts network grp pwd rpc ethers \
26761c28 37 spwd netgrp key alias
5f0e6fc7 38
7e3399b3
UD
39others := getent
40install-bin := getent
7d6a8338 41
6591c335
UD
42tests = test-netdb
43
26b4d766
UD
44include ../Makeconfig
45
6d4752d8
UD
46ifeq (yes,$(build-static-nss))
47otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
48 $(resolvobjdir)/libresolv.a
49endif
50
5f0e6fc7 51# Specify rules for the nss_* modules. We have some services.
7e3399b3 52services := files
5f0e6fc7
RM
53
54extra-libs = $(services:%=libnss_%)
dbe31b9a
RM
55# These libraries will be built in the `others' pass rather than
56# the `lib' pass, because they depend on libc.so being built already.
57extra-libs-others = $(extra-libs)
5f0e6fc7
RM
58
59# The sources are found in the appropriate subdir.
6dbe2837 60subdir-dirs = $(services:%=nss_%)
5f0e6fc7
RM
61vpath %.c $(subdir-dirs)
62
63
36ecfe56 64libnss_files-routines := $(addprefix files-,$(databases))
5f0e6fc7
RM
65distribute += files-XXX.c files-parse.c
66
1aadea59 67
6ca96fe2 68# Build static module if requested
5107cf1d 69ifneq ($(build-static-nss),yes)
40a55d20 70libnss_files-inhibit-o = $(filter-out .os,$(object-suffixes))
6ca96fe2 71endif
5f0e6fc7
RM
72
73include ../Rules
74
75
6d4752d8
UD
76ifeq (yes,$(build-static-nss))
77$(objpfx)getent: $(objpfx)libnss_files.a
78endif
79
8a594e3c
RM
80# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
81# This ensures they will load libc.so for needed symbols if loaded by
82# a statically-linked program that hasn't already loaded it.
83$(services:%=$(objpfx)libnss_%.so): $(common-objpfx)libc.so
This page took 2.605926 seconds and 5 git commands to generate.