source: vendor/glibc-tests/glibc/nss/Makefile

Last change on this file was 2036, checked in by bird, 20 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1# Copyright (C) 1996,1997,1998,2000,2001,2002 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# Makefile for name service switch.
21#
22subdir := nss
23
24headers := nss.h
25distribute := nsswitch.h XXX-lookup.c getXXbyYY.c getXXbyYY_r.c \
26 getXXent.c getXXent_r.c databases.def \
27 nsswitch.conf digits_dots.c function.def
28
29# This is the trivial part which goes into libc itself.
30routines = nsswitch getnssent getnssent_r digits_dots \
31 $(addsuffix -lookup,$(databases))
32
33# These are the databases that go through nss dispatch.
34# Caution: if you add a database here, you must add its real name
35# in databases.def, too.
36databases = proto service hosts network grp pwd rpc ethers \
37 spwd netgrp key alias
38
39others := getent
40install-bin := getent
41
42tests = test-netdb
43xtests = bug-erange
44
45include ../Makeconfig
46
47ifeq (yes,$(build-static-nss))
48otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
49 $(resolvobjdir)/libresolv.a
50endif
51
52# Specify rules for the nss_* modules. We have some services.
53services := files
54
55extra-libs = $(services:%=libnss_%)
56# These libraries will be built in the `others' pass rather than
57# the `lib' pass, because they depend on libc.so being built already.
58extra-libs-others = $(extra-libs)
59
60# The sources are found in the appropriate subdir.
61subdir-dirs = $(services:%=nss_%)
62vpath %.c $(subdir-dirs)
63
64
65libnss_files-routines := $(addprefix files-,$(databases))
66distribute += files-XXX.c files-parse.c
67
68
69# Build static module if requested
70ifneq ($(build-static-nss),yes)
71libnss_files-inhibit-o = $(filter-out .os,$(object-suffixes))
72endif
73
74include ../Rules
75
76
77ifeq (yes,$(build-static-nss))
78$(objpfx)getent: $(objpfx)libnss_files.a
79endif
80
81# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
82# This ensures they will load libc.so for needed symbols if loaded by
83# a statically-linked program that hasn't already loaded it.
84$(services:%=$(objpfx)libnss_%.so): $(common-objpfx)libc.so \
85 $(common-objpfx)libc_nonshared.a
Note: See TracBrowser for help on using the repository browser.