Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
10139N/A#
10139N/A# CDDL HEADER START
10139N/A#
12158N/A# The contents of this file are subject to the terms of the
10139N/A# Common Development and Distribution License, Version 1.0 only
10139N/A# (the "License"). You may not use this file except in compliance
10139N/A# with the License.
17185N/A#
10139N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10139N/A# or http://www.opensolaris.org/os/licensing.
18603N/A# See the License for the specific language governing permissions
17178N/A# and limitations under the License.
10139N/A#
10139N/A# When distributing Covered Code, include this CDDL HEADER in each
10139N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
18685N/A# If applicable, add the following below this CDDL HEADER, with the
10139N/A# fields enclosed by brackets "[]" replaced with your own identifying
10139N/A# information: Portions Copyright [yyyy] [name of copyright owner]
18616N/A#
10139N/A# CDDL HEADER END
10139N/A#
18580N/A#
10142N/A#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.12 */
12132N/A#
12132N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
10142N/A# Use is subject to license terms.
12773N/A#
14434N/A# cmd/fs.d/nfs/nfsstat/Makefile
12773N/A
14434N/APROG= nfsstat
15440N/A
15440N/Ainclude ../../../Makefile.cmd
15740N/A
10139N/ACFLAGS += $(CCVERBOSE) -o $@
12107N/ACOMMON= nfs_sec.o
10139N/AOBJS= nfsstat.o $(COMMON)
10139N/ASRCS= nfsstat.c ../lib/nfs_sec.c
10139N/A
12796N/ALDLIBS += -lkstat -lnsl -lrt
10139N/A
10139N/A$(PROG): $(OBJS)
10139N/A $(LINK.c) -o $@ $(LDLIBS) $(OBJS)
10139N/A $(POST_PROCESS)
10139N/A
10139N/AFILEMODE= 0555
10139N/AGROUP= bin
12107N/A
13969N/A.KEEP_STATE:
12107N/A
14181N/Aall: $(PROG)
14181N/A
14181N/Anfs_sec.o: ../lib/nfs_sec.c
14181N/A $(COMPILE.c) ../lib/nfs_sec.c
14181N/A
14181N/Ainstall: all $(ROOTPROG)
18556N/A
18556N/Alint:
15440N/A $(LINT.c) $(SRCS) $(LDLIBS)
18556N/A
17561N/Aclean:
18387N/A $(RM) $(OBJS)
15864N/A
10139N/Ainclude ../../../Makefile.targ
10139N/A