blob: 9103db70aec0b7f065e3a375664f9bff68cdd2fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2018, Joyent, Inc.
#
# Makefile for name service cache daemon
#
PROG= nscd
MANIFEST= name-service-cache.xml
SVCMETHOD= svc-nscd
include ../Makefile.cmd
ROOTMANIFESTDIR= $(ROOTSVCSYSTEM)
OBJS= server.o getpw.o getgr.o gethost.o getnode.o \
getether.o getrpc.o getproto.o getnet.o \
getbootp.o getauth.o getserv.o \
getnetmasks.o getprinter.o getproject.o \
getexec.o getprof.o getuser.o cache.o \
nscd_biggest.o nscd_wait.o \
nscd_init.o nscd_access.o nscd_cfgfile.o nscd_config.o \
nscd_dbimpl.o nscd_getentctx.o nscd_intaddr.o \
nscd_log.o nscd_nswconfig.o nscd_nswstate.o nscd_nswcfgst.o \
nscd_seqnum.o nscd_smfmonitor.o \
nscd_switch.o nscd_nswparse.o nscd_initf.o nscd_selfcred.o \
nscd_frontend.o nscd_admin.o nscd_door.o \
gettnrhtp.o gettnrhdb.o
CLOBBERFILES= nscd
SRCS= ${OBJS:%.o=%.c}
CFLAGS += $(CCVERBOSE)
CPPFLAGS += -D_REENTRANT -DSUN_THREADS \
-I../../lib/libc/port/gen -I../../lib/libc/inc \
-I../../lib/libsldap/common
LINTFLAGS += -erroff=E_GLOBAL_COULD_BE_STATIC2
LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2
LINTFLAGS += -erroff=E_NAME_DEF_NOT_USED2
CERRWARN += -_gcc=-Wno-switch
CERRWARN += $(CNOWARN_UNINIT)
CERRWARN += -_gcc=-Wno-parentheses
CERRWARN += -_gcc=-Wno-type-limits
# not linted
SMATCH=off
# nscd interposes on many symbols, and must export others for its own dlsym()
# use, and dlsym() calls from libc. Itemizing the interfaces within a mapfile
# is error-prone, so establish the whole object as an interposer.
LDFLAGS += $(ZINTERPOSE)
# TCOV_FLAG= -ql
PROGLIBS= $(LDLIBS) -lresolv -lnsl -lsocket -lumem -lscf -lavl
# install macros and rule
#
ROOTPROG= ${ROOTUSRSBIN}/nscd
.KEEP_STATE:
all: $(PROG) $(NISPROG)
${PROG}: ${OBJS}
${LINK.c} ${OPT} -o $@ ${OBJS} ${PROGLIBS}
${POST_PROCESS}
lint:
$(LINT.c) ${SRCS} ${PROGLIBS}
cstyle:
${CSTYLE} ${SRCS}
install: all $(ROOTPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
check: $(CHKMANIFEST)
clean:
${RM} ${OBJS}
${ROOTUSRSBIN}/%: %
${INS.file}
${ROOTUSRLIB}/%: %
${INS.file}
include ../Makefile.targ
|