Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
152N/A#
152N/A# CDDL HEADER START
152N/A#
152N/A# The contents of this file are subject to the terms of the
152N/A# Common Development and Distribution License, Version 1.0 only
152N/A# (the "License"). You may not use this file except in compliance
152N/A# with the License.
152N/A#
152N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
152N/A# or http://www.opensolaris.org/os/licensing.
152N/A# See the License for the specific language governing permissions
152N/A# and limitations under the License.
152N/A#
152N/A# When distributing Covered Code, include this CDDL HEADER in each
152N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
152N/A# If applicable, add the following below this CDDL HEADER, with the
152N/A# fields enclosed by brackets "[]" replaced with your own identifying
152N/A# information: Portions Copyright [yyyy] [name of copyright owner]
152N/A#
152N/A# CDDL HEADER END
727N/A#
152N/A#
152N/A# Copyright 1990-2003 Sun Microsystems, Inc. All rights reserved.
152N/A# Use is subject to license terms.
152N/A#
152N/A# ident "%Z%%M% %I% %E% SMI"
618N/A#
152N/A# cmd/fs.d/nfs/statd/Makefile
152N/A#
152N/A
152N/AFSTYPE= nfs
152N/ATYPEPROG= statd
152N/AATTMK= $(TYPEPROG)
152N/A
152N/Ainclude ../../Makefile.fstype
152N/ACPPFLAGS += -D_REENTRANT -DSUN_THREADS
152N/A
152N/AOBJS= sm_svc.o sm_proc.o sm_statd.o selfcheck.o
152N/A
152N/ASRCS= sm_svc.c sm_proc.c sm_statd.c ../lib/selfcheck.c
152N/A
152N/ALDLIBS += -lsocket -lrpcsvc -lnsl
152N/A
152N/A$(TYPEPROG): $(OBJS)
152N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
277N/A $(POST_PROCESS)
727N/A $(LOCK_LINT)
152N/A
152N/Aselfcheck.o: ../lib/selfcheck.c
152N/A $(COMPILE.c) ../lib/selfcheck.c
277N/A
683N/Alint: lint_SRCS
152N/A
181N/Aclean:
181N/A $(RM) $(OBJS) $(TYPEPROG)
152N/A
152N/A
152N/A
152N/A