]> git.ipfire.org Git - thirdparty/glibc.git/blob - nis/Makefile
update from main archive 961211
[thirdparty/glibc.git] / nis / Makefile
1 # Copyright (C) 1996 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 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 #
20 # Makefile for NIS part.
21 #
22 subdir := nis
23
24 headers := $(wildcard rpcsvc/*.[hx])
25
26 # These are the databases available for the nis (and perhaps later nisplus)
27 # service. This must be a superset of the services in nss.
28 databases = proto service hosts network grp pwd rpc ethers \
29 spwd netgrp alias
30
31 # Specify rules for the nss_* modules. Later we may have nisplus as well.
32 services := nis compat
33
34 extra-libs = libnsl $(services:%=libnss_%)
35 # These libraries will be built in the `others' pass rather than
36 # the `lib' pass, because they depend on libc.so being built already.
37 extra-libs-others = $(extra-libs)
38
39 # The sources are found in the appropriate subdir.
40 subdir-dirs = $(services:%=nss_%)
41 vpath %.c $(subdir-dirs)
42
43 libnsl-routines = yp_xdr ypclnt ypupdate_xdr
44
45 libnss_compat-routines := $(addprefix compat-,grp pwd spwd)
46 libnss_compat-inhibit-o = $(filter-out .so,$(object-suffixes))
47
48 libnss_nis-routines := $(addprefix nis-,$(databases))
49 libnss_nis-inhibit-o = $(filter-out .so,$(object-suffixes))
50
51
52 # Sun's header files are not too clean.
53 CFLAGS-compat-pwd.c = -Wno-strict-prototypes
54 CFLAGS-compat-spwd.c = -Wno-strict-prototypes
55 CFLAGS-compat-grp.c = -Wno-strict-prototypes
56 CFLAGS-nis-alias.c = -Wno-strict-prototypes
57 CFLAGS-nis-ethers.c = -Wno-strict-prototypes
58 CFLAGS-nis-grp.c = -Wno-strict-prototypes
59 CFLAGS-nis-hosts.c = -Wno-strict-prototypes
60 CFLAGS-nis-netgrp.c = -Wno-strict-prototypes
61 CFLAGS-nis-network.c = -Wno-strict-prototypes
62 CFLAGS-nis-proto.c = -Wno-strict-prototypes
63 CFLAGS-nis-publickey.c = -Wno-strict-prototypes
64 CFLAGS-nis-pwd.c = -Wno-strict-prototypes
65 CFLAGS-nis-rpc.c = -Wno-strict-prototypes
66 CFLAGS-nis-service.c = -Wno-strict-prototypes
67 CFLAGS-nis-spwd.c = -Wno-strict-prototypes
68 CFLAGS-ypclnt.c = -Wno-strict-prototypes -Wno-write-strings -Irpcsvc
69 CFLAGS-yp_xdr.c = -Wno-strict-prototypes -Irpcsvc
70 CFLAGS-ypupdate_xdr.c = -Wno-strict-prototypes -Irpcsvc
71
72 include ../Rules
73
74
75 $(objpfx)libnss_compat.so: $(objpfx)libnsl.so$(libnsl.so-version) \
76 $(common-objpfx)nss/libnss_files.so
77 $(objpfx)libnss_nis.so: $(objpfx)libnsl.so$(libnsl.so-version) \
78 $(common-objpfx)nss/libnss_files.so
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 $(services:%=$(objpfx)libnss_%.so): $(common-objpfx)libc.so
84
85
86 ifeq ($(build-shared),yes)
87 $(others:%=$(objpfx)%): $(objpfx)libnsl.so$(libnsl.so-version)
88 else
89 $(others:%=$(objpfx)%): $(objpfx)libnsl.a
90 endif