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