Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
1708N/A#
1708N/A# CDDL HEADER START
1708N/A#
1708N/A# The contents of this file are subject to the terms of the
1708N/A# Common Development and Distribution License, Version 1.0 only
1708N/A# (the "License"). You may not use this file except in compliance
1708N/A# with the License.
1708N/A#
1708N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1708N/A# or http://www.opensolaris.org/os/licensing.
1708N/A# See the License for the specific language governing permissions
1708N/A# and limitations under the License.
1708N/A#
1708N/A# When distributing Covered Code, include this CDDL HEADER in each
1708N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1708N/A# If applicable, add the following below this CDDL HEADER, with the
1708N/A# fields enclosed by brackets "[]" replaced with your own identifying
1708N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1708N/A#
1708N/A# CDDL HEADER END
1708N/A#
1708N/A#
1708N/A#ident "%Z%%M% %I% %E% SMI"
1708N/A#
1708N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
1708N/A# Use is subject to license terms.
1708N/A#
1708N/A# tools/install.bin/Makefile
1708N/A#
1708N/A
1708N/APROG= install.bin
1708N/AOBJS= $(PROG).o
1708N/ASRCS= $(OBJS:%.o=%.c)
1708N/A
1708N/Ainclude ../Makefile.tools
1708N/A
1708N/AOWNER= root
1708N/AGROUP= bin
1708N/ACFLAGS += $(CCVERBOSE)
1708N/ALDLIBS += -lgen
1708N/A
1708N/A.KEEP_STATE:
1708N/A
1708N/Aall: $(PROG)
1708N/A
1708N/Ainstall: all .WAIT $(ROOTONBLDMACHPROG)
1708N/A $(RM) $(ROOTONBLDBINMACH)/install
1708N/A $(LN) $(ROOTONBLDMACHPROG) $(ROOTONBLDBINMACH)/install
1708N/A
1708N/Alint: lint_SRCS
1708N/A
1708N/Aclean:
1708N/A $(RM) $(CLEANFILES)
1708N/A
1708N/Ainclude ../Makefile.targ
1708N/A