]> git.ipfire.org Git - thirdparty/glibc.git/blame - nis/Makefile
Update.
[thirdparty/glibc.git] / nis / Makefile
CommitLineData
1ef32c3d 1# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
6259ec0d
UD
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
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.
18
19#
2d7da676 20# Makefile for NIS/NIS+ part.
6259ec0d
UD
21#
22subdir := nis
23
0413b54c 24headers := $(wildcard rpcsvc/*.[hx])
2d7da676
UD
25distribute := nss-nis.h nss-nisplus.h nis_intern.h Banner \
26 nisplus-parser.h
6259ec0d
UD
27
28# These are the databases available for the nis (and perhaps later nisplus)
29# service. This must be a superset of the services in nss.
30databases = proto service hosts network grp pwd rpc ethers \
26dee9c4 31 spwd netgrp alias publickey
6259ec0d 32
e61abf83 33# Specify rules for the nss_* modules.
7799b7b3 34services := nis nisplus compat
6259ec0d
UD
35
36extra-libs = libnsl $(services:%=libnss_%)
37# These libraries will be built in the `others' pass rather than
38# the `lib' pass, because they depend on libc.so being built already.
39extra-libs-others = $(extra-libs)
40
6259ec0d 41# The sources are found in the appropriate subdir.
f8b87ef0 42subdir-dirs = $(services:%=nss_%)
6259ec0d
UD
43vpath %.c $(subdir-dirs)
44
e61abf83
UD
45libnsl-routines = yp_xdr ypclnt ypupdate_xdr \
46 nis_subr nis_local_names nis_free nis_file \
51702635 47 nis_print nis_error nis_call nis_lookup nis_clone\
2d7da676 48 nis_cache nis_table nis_xdr nis_server nis_ping\
51702635 49 nis_checkpoint nis_mkdir nis_rmdir nis_getservlist\
2d7da676 50 nis_verifygroup nis_ismember nis_addmember nis_util\
51702635
UD
51 nis_removemember nis_creategroup nis_destroygroup\
52 nis_print_group_entry nis_domain_of nis_domain_of_r\
3996f34b
UD
53 nis_modify nis_remove nis_add nis_defaults lckcache\
54 nis_findserv
714a562f 55libnsl-map = libnsl.map
6259ec0d 56
2d7da676 57libnss_compat-routines := $(addprefix compat-,grp pwd spwd) nisplus-parser
6259ec0d 58libnss_compat-inhibit-o = $(filter-out .so,$(object-suffixes))
714a562f 59libnss_compat-map := libnss_compat.map
6259ec0d
UD
60
61libnss_nis-routines := $(addprefix nis-,$(databases))
62libnss_nis-inhibit-o = $(filter-out .so,$(object-suffixes))
714a562f 63libnss_nis-map := libnss_nis.map
6259ec0d 64
2d7da676 65libnss_nisplus-routines := $(addprefix nisplus-,$(databases)) nisplus-parser
e61abf83 66libnss_nisplus-inhibit-o = $(filter-out .so,$(object-suffixes))
714a562f 67libnss_nisplus-map := libnss_nisplus.map
6259ec0d 68
6259ec0d
UD
69include ../Rules
70
71
2d7da676 72$(objpfx)libnss_compat.so: $(objpfx)libnsl.so$(libnsl.so-version)
6259ec0d
UD
73$(objpfx)libnss_nis.so: $(objpfx)libnsl.so$(libnsl.so-version) \
74 $(common-objpfx)nss/libnss_files.so
e61abf83 75$(objpfx)libnss_nisplus.so: $(objpfx)libnsl.so$(libnsl.so-version)
6259ec0d
UD
76
77# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
78# This ensures they will load libc.so for needed symbols if loaded by
79# a statically-linked program that hasn't already loaded it.
9498096c 80$(services:%=$(objpfx)libnss_%.so) $(objpfx)libnsl.so: $(common-objpfx)libc.so
6259ec0d
UD
81
82
83ifeq ($(build-shared),yes)
84$(others:%=$(objpfx)%): $(objpfx)libnsl.so$(libnsl.so-version)
85else
86$(others:%=$(objpfx)%): $(objpfx)libnsl.a
87endif