Update.
[glibc.git] / nis / Makefile
blob64925bb70d12ceb2fb7b23feaa27b10e7b7ca84c
1 # Copyright (C) 1996, 1997 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 not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
20 # Makefile for NIS part.
22 subdir := nis
24 headers := $(wildcard rpcsvc/*.[hx])
25 distribute := nss-nis.h nss-nisplus.h
27 # These are the databases available for the nis (and perhaps later nisplus)
28 # service. This must be a superset of the services in nss.
29 databases = proto service hosts network grp pwd rpc ethers \
30 spwd netgrp alias publickey
32 # Specify rules for the nss_* modules.
33 services := nis nisplus compat
35 extra-libs = libnsl $(services:%=libnss_%)
36 # These libraries will be built in the `others' pass rather than
37 # the `lib' pass, because they depend on libc.so being built already.
38 extra-libs-others = $(extra-libs)
40 # The sources are found in the appropriate subdir.
41 subdir-dirs = $(services:%=nss_%)
42 vpath %.c $(subdir-dirs)
44 libnsl-routines = yp_xdr ypclnt ypupdate_xdr \
45 nis_subr nis_local_names nis_free nis_file \
46 nis_print nis_error nis_call nis_names nis_clone\
47 nis_table nis_xdr nis_intern nis_server
49 libnss_compat-routines := $(addprefix compat-,grp pwd spwd)
50 libnss_compat-inhibit-o = $(filter-out .so,$(object-suffixes))
52 libnss_nis-routines := $(addprefix nis-,$(databases))
53 libnss_nis-inhibit-o = $(filter-out .so,$(object-suffixes))
55 libnss_nisplus-routines := $(addprefix nisplus-,$(databases))
56 libnss_nisplus-inhibit-o = $(filter-out .so,$(object-suffixes))
58 include ../Rules
61 $(objpfx)libnss_compat.so: $(objpfx)libnsl.so$(libnsl.so-version) \
62 $(common-objpfx)nss/libnss_files.so \
63 $(common-objpfx)nis/libnss_nisplus.so
64 $(objpfx)libnss_nis.so: $(objpfx)libnsl.so$(libnsl.so-version) \
65 $(common-objpfx)nss/libnss_files.so
66 $(objpfx)libnss_nisplus.so: $(objpfx)libnsl.so$(libnsl.so-version)
68 # Depend on libc.so so a DT_NEEDED is generated in the shared objects.
69 # This ensures they will load libc.so for needed symbols if loaded by
70 # a statically-linked program that hasn't already loaded it.
71 $(services:%=$(objpfx)libnss_%.so): $(common-objpfx)libc.so
74 ifeq ($(build-shared),yes)
75 $(others:%=$(objpfx)%): $(objpfx)libnsl.so$(libnsl.so-version)
76 else
77 $(others:%=$(objpfx)%): $(objpfx)libnsl.a
78 endif