]> sourceware.org Git - glibc.git/blame - nss/Makefile
Update.
[glibc.git] / nss / Makefile
CommitLineData
fd26970f 1# Copyright (C) 1996, 1997 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 \
5107cf1d
UD
27 nsswitch.conf db-Makefile digits_dots.c \
28 function.def
5f0e6fc7
RM
29
30# This is the trivial part which goes into libc itself.
6dbe2837 31routines = nsswitch $(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
RM
38
39# Specify rules for the nss_* modules. We have some services.
68dbb3a6 40services := files db
5f0e6fc7
RM
41
42extra-libs = $(services:%=libnss_%)
dbe31b9a
RM
43# These libraries will be built in the `others' pass rather than
44# the `lib' pass, because they depend on libc.so being built already.
45extra-libs-others = $(extra-libs)
5f0e6fc7
RM
46
47# The sources are found in the appropriate subdir.
6dbe2837 48subdir-dirs = $(services:%=nss_%)
5f0e6fc7
RM
49vpath %.c $(subdir-dirs)
50
51
d4a089cf 52libnss_files-routines := $(addprefix files-,$(filter-out key, $(databases)))
714a562f 53libnss_files-map := libnss_files.map
5f0e6fc7
RM
54distribute += files-XXX.c files-parse.c
55
d4a089cf 56libnss_db-routines := $(addprefix db-,$(filter-out hosts network key,\
96bda0ea 57 $(databases)))
714a562f 58libnss_db-map := libnss_db.map
e4cf5070 59generated += $(filter-out db-alias.c db-netgrp.c, \
1f64ac13 60 $(addsuffix .c,$(libnss_db-routines)))
96bda0ea
RM
61distribute += db-XXX.c
62
5107cf1d
UD
63
64ifneq ($(build-static-nss),yes)
40a55d20
UD
65libnss_files-inhibit-o = $(filter-out .os,$(object-suffixes))
66libnss_db-inhibit-o = $(filter-out .os,$(object-suffixes))
5107cf1d 67endif
5f0e6fc7
RM
68
69
70include ../Rules
71
72
6e953631 73$(objpfx)libnss_db.so: $(common-objpfx)db/libdb.so $(objpfx)libnss_files.so
96bda0ea
RM
74
75$(libnss_db-routines:%=$(objpfx)%.c): $(objpfx)db-%.c: nss_files/files-%.c
76 @rm -f $@.new
77 (echo '#define EXTERN_PARSER';\
78 echo '#define GENERIC "../nss_db/db-XXX.c"';\
79 echo '#include <$<>') > $@.new
80 mv -f $@.new $@
8a594e3c
RM
81
82# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
83# This ensures they will load libc.so for needed symbols if loaded by
84# a statically-linked program that hasn't already loaded it.
85$(services:%=$(objpfx)libnss_%.so): $(common-objpfx)libc.so
This page took 0.095238 seconds and 5 git commands to generate.