Makefile revision cb5caa98562cf06753163f558cbcfe30b8f4673a
#
# 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 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
# Makefile for name service cache daemon
#
PROG= nscd
NISPROG= nscd_nischeck
MANIFEST= name-service-cache.xml
SVCMETHOD= svc-nscd
include ../Makefile.cmd
ROOTMANIFESTDIR= $(ROOTSVCSYSTEM)
$(ROOTMANIFEST) := FILEMODE= 444
$(ROOTMANIFESTDIR)/%: %
$(INS.file)
OBJS= server.o getpw.o getgr.o gethost.o getnode.o \
getether.o getrpc.o getproto.o getnet.o \
getbootp.o getauuser.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
NISOBJS= nscd_nischeck.o
CLOBBERFILES= nscd nscd_nischeck
SRCS= ${OBJS:%.o=%.c}
NISSRC= ${NISOBJS:%.o=%.c}
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
# TCOV_FLAG= -ql
# GPROF_FLAG= -xpg
# DEBUG_FLAG= -g
$(PROG) := LDLIBS += -lresolv -lnsl -lsocket -lumem -lscf -lavl -lgss
$(NISPROG) := LDLIBS += -lnsl
# install macros and rule
#
GROUP= bin
ROOTPROG= ${ROOTUSRSBIN}/nscd
ROOTNISPROG= ${ROOTLIB}/nscd_nischeck
.KEEP_STATE:
all: $(PROG) $(NISPROG)
${PROG}: ${OBJS}
${LINK.c} ${OPT} -o $@ ${OBJS} ${LDLIBS}
${POST_PROCESS}
${NISPROG}: ${NISOBJS}
${LINK.c} ${OPT} -o $@ ${NISOBJS} ${LDLIBS}
${POST_PROCESS}
lint:
$(LINT.c) ${SRCS}
lint2:
$(LINT.c) ${NISSRC}
cstyle:
${CSTYLE} ${SRCS} ${NISSRC}
install: all $(ROOTPROG) $(ROOTNISPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
check: $(CHKMANIFEST)
clean:
${RM} ${OBJS} ${NISOBJS}
${ROOTUSRSBIN}/%: %
${INS.file}
${ROOTUSRLIB}/%: %
${INS.file}
include ../Makefile.targ