update from main archive 960829
[glibc/history.git] / nss / Makefile
blobb900e96cc3989044cd92f14a40468823f8cabea0
1 # Copyright (C) 1996 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 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.
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.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If
16 # not, write to the Free Software Foundation, Inc.,
17 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # Makefile for name service switch.
22 subdir := nss
24 headers := nss.h
25 distribute := nsswitch.h XXX-lookup.c getXXbyYY.c getXXbyYY_r.c \
26 getXXent.c getXXent_r.c databases.def \
27 nsswitch.conf db-Makefile
29 # This is the trivial part which goes into libc itself.
30 routines = nsswitch $(addsuffix -lookup,$(databases))
32 # These are the databases that go through nss dispatch.
33 # Caution: if you add a database here, you must add its real name
34 # in databases.def, too.
35 databases = proto service hosts network grp pwd rpc ethers \
36 spwd
38 # Specify rules for the nss_* modules. We have some services.
39 services := files dns db
41 extra-libs = $(services:%=libnss_%)
42 # These libraries will be built in the `others' pass rather than
43 # the `lib' pass, because they depend on libc.so being built already.
44 extra-libs-others = $(extra-libs)
46 # The sources are found in the appropriate subdir.
47 subdir-dirs = $(services:%=nss_%)
48 vpath %.c $(subdir-dirs)
51 libnss_files-routines := $(addprefix files-,$(databases))
52 distribute += files-XXX.c files-parse.c
54 libnss_dns-routines := dns-host dns-network
56 libnss_db-routines := $(addprefix db-,$(filter-out hosts network,\
57 $(databases)))
58 generated += $(addsuffix .c,$(libnss_db-routines))
59 distribute += db-XXX.c
61 libnss_files-inhibit-o = $(filter-out .so,$(object-suffixes))
62 libnss_dns-inhibit-o = $(filter-out .so,$(object-suffixes))
63 libnss_db-inhibit-o = $(filter-out .so,$(object-suffixes))
66 include ../Rules
69 $(objpfx)libnss_dns.so: $(common-objpfx)resolv/libresolv.so
71 $(objpfx)libnss_db.so: $(common-objpfx)db/libdb.so $(objpfx)libnss_files.so
73 $(libnss_db-routines:%=$(objpfx)%.c): $(objpfx)db-%.c: nss_files/files-%.c
74 @rm -f $@.new
75 (echo '#define EXTERN_PARSER';\
76 echo '#define GENERIC "../nss_db/db-XXX.c"';\
77 echo '#include <$<>') > $@.new
78 mv -f $@.new $@
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