Makefile revision 6185db853e024a486ff8837e6784dd290d866112
3998N/A#
3998N/A# CDDL HEADER START
3998N/A#
3998N/A# The contents of this file are subject to the terms of the
3998N/A# Common Development and Distribution License, Version 1.0 only
3998N/A# (the "License"). You may not use this file except in compliance
3998N/A# with the License.
3998N/A#
3998N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3998N/A# or http://www.opensolaris.org/os/licensing.
3998N/A# See the License for the specific language governing permissions
3998N/A# and limitations under the License.
3998N/A#
3998N/A# When distributing Covered Code, include this CDDL HEADER in each
3998N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3998N/A# If applicable, add the following below this CDDL HEADER, with the
3998N/A# fields enclosed by brackets "[]" replaced with your own identifying
3998N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3998N/A#
3998N/A# CDDL HEADER END
3998N/A#
3998N/A#
5403N/A# ident "%Z%%M% %I% %E% SMI"
3998N/A#
3998N/A# Copyright (c) 1989 by Sun Microsystems, Inc.
3998N/A#
3998N/A# cmd/dfs.cmds/share/Makefile
3998N/A#
6818N/A
3998N/APROG= share
3998N/A
3998N/AOBJS= share.o
6818N/A
3998N/ACFLAG += -s
6818N/A
6818N/Ainclude ../../Makefile.cmd
3998N/A
3998N/A.KEEP_STATE:
6818N/A
3998N/Aall: $(PROG)
3998N/A
4982N/A$(PROG): share.o
3998N/A $(LINK.c) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)
3998N/A $(POST_PROCESS)
3998N/A
3998N/Ainstall: all $(ROOTUSRSBINPROG)
3998N/A
3998N/Aclean:
3998N/A $(RM) $(OBJS)
3998N/A
3998N/Alint: lint_PROG
3998N/A
3998N/Ainclude ../../Makefile.targ
3998N/A