]> git.ipfire.org Git - thirdparty/glibc.git/blob - nis/Makefile
Add script to update copyright notices and reformat some to facilitate its use.
[thirdparty/glibc.git] / nis / Makefile
1 # Copyright (C) 1996-1998,2001,2004,2006,2011,2012
2 # Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
4
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
9
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
14
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
18
19 #
20 # Makefile for NIS/NIS+ part.
21 #
22 subdir := nis
23
24 aux := nis_hash
25
26 include ../Makeconfig
27
28 ifeq ($(link-obsolete-rpc),yes)
29 headers := $(wildcard rpcsvc/*.[hx])
30 endif
31
32 # These are the databases available for the nis (and perhaps later nisplus)
33 # service. This must be a superset of the services in nss.
34 databases = proto service hosts network grp pwd rpc ethers \
35 spwd netgrp alias publickey
36
37 # Specify rules for the nss_* modules.
38 services := nis nisplus compat
39
40 extra-libs = libnsl $(services:%=libnss_%)
41 # These libraries will be built in the `others' pass rather than
42 # the `lib' pass, because they depend on libc.so being built already.
43 extra-libs-others = $(extra-libs)
44
45 # The sources are found in the appropriate subdir.
46 subdir-dirs = $(services:%=nss_%)
47 vpath %.c $(subdir-dirs)
48
49 libnsl-routines = yp_xdr ypclnt ypupdate_xdr \
50 nis_subr nis_local_names nis_free nis_file \
51 nis_print nis_error nis_call nis_lookup\
52 nis_table nis_xdr nis_server nis_ping \
53 nis_checkpoint nis_mkdir nis_rmdir nis_getservlist\
54 nis_verifygroup nis_ismember nis_addmember nis_util\
55 nis_removemember nis_creategroup nis_destroygroup\
56 nis_print_group_entry nis_domain_of nis_domain_of_r\
57 nis_modify nis_remove nis_add nis_defaults\
58 nis_findserv nis_callback nis_clone_dir nis_clone_obj\
59 nis_clone_res nss-default
60
61 libnss_compat-routines := $(addprefix compat-,grp pwd spwd initgroups)
62 libnss_compat-inhibit-o = $(filter-out .os,$(object-suffixes))
63
64 libnss_nis-routines := $(addprefix nis-,$(databases)) nis-initgroups \
65 nss-nis
66 libnss_nis-inhibit-o = $(filter-out .os,$(object-suffixes))
67
68 libnss_nisplus-routines := $(addprefix nisplus-,$(databases)) nisplus-parser \
69 nss-nisplus nisplus-initgroups
70 libnss_nisplus-inhibit-o = $(filter-out .os,$(object-suffixes))
71
72 include ../Rules
73
74
75 $(objpfx)libnss_compat.so: $(objpfx)libnsl.so$(libnsl.so-version)
76 $(objpfx)libnss_nis.so: $(objpfx)libnsl.so$(libnsl.so-version) \
77 $(common-objpfx)nss/libnss_files.so
78 $(objpfx)libnss_nisplus.so: $(objpfx)libnsl.so$(libnsl.so-version)
79
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 libnsl-libc = $(common-objpfx)linkobj/libc.so
84 $(services:%=$(objpfx)libnss_%.so) $(objpfx)libnsl.so: $(libnsl-libc) \
85 $(common-objpfx)libc_nonshared.a
86
87
88 ifeq ($(build-shared),yes)
89 $(others:%=$(objpfx)%): $(objpfx)libnsl.so$(libnsl.so-version)
90 else
91 $(others:%=$(objpfx)%): $(objpfx)libnsl.a
92 endif