Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
1545N/A#
3909N/A# CDDL HEADER START
1545N/A#
1545N/A# The contents of this file are subject to the terms of the
1545N/A# Common Development and Distribution License, Version 1.0 only
1545N/A# (the "License"). You may not use this file except in compliance
2362N/A# with the License.
1545N/A#
2362N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1545N/A# or http://www.opensolaris.org/os/licensing.
1545N/A# See the License for the specific language governing permissions
1545N/A# and limitations under the License.
1545N/A#
1545N/A# When distributing Covered Code, include this CDDL HEADER in each
1545N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1545N/A# If applicable, add the following below this CDDL HEADER, with the
1545N/A# fields enclosed by brackets "[]" replaced with your own identifying
1545N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1545N/A#
1545N/A# CDDL HEADER END
2362N/A#
2362N/A#
2362N/A#ident "%Z%%M% %I% %E% SMI"
1545N/A#
1545N/A# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
1545N/A# Use is subject to license terms.
1674N/A#
1545N/A
1545N/APROG= sysdef
1545N/A
1545N/Ainclude ../Makefile.cmd
1545N/A
1545N/A$(64ONLY)SUBDIRS = $(MACH)
1545N/A$(BUILD64)SUBDIRS += $(MACH64)
1545N/A
1545N/Aall := TARGET = all
1545N/Ainstall := TARGET = install
1545N/Aclean := TARGET = clean
1545N/Aclobber := TARGET = clobber
1545N/Alint := TARGET = lint
3488N/A
1545N/ARELUSRSBIN= ../usr/sbin
1545N/AROOTSYMLINK= $(ROOTETC)/$(PROG)
1545N/A
1545N/AOWNER= root
1545N/AGROUP= sys
1545N/AFILEMODE= 0555
1545N/A
1545N/A.KEEP_STATE:
1545N/A
1545N/Aall: $(SUBDIRS)
1545N/A
1545N/A$(ROOTSYMLINK):
1545N/A -$(RM) $@; $(SYMLINK) $(RELUSRSBIN)/$(PROG) $@
1545N/A
1545N/Aclean clobber lint: $(SUBDIRS)
1545N/A
1545N/Ainstall: $(SUBDIRS) $(ROOTSYMLINK)
1545N/A -$(RM) $(ROOTUSRSBINPROG)
1545N/A -$(LN) $(ISAEXEC) $(ROOTUSRSBINPROG)
1545N/A
1545N/A$(SUBDIRS): FRC
1545N/A @cd $@; pwd; $(MAKE) $(TARGET)
1545N/A
1545N/AFRC:
1545N/A
1545N/Ainclude ../Makefile.targ
1545N/A