Makefile revision 342440ec94087b8c751c580ab9ed6c693d31d418
1923N/A#
1N/A# CDDL HEADER START
1923N/A#
1923N/A# The contents of this file are subject to the terms of the
1923N/A# Common Development and Distribution License (the "License").
293N/A# You may not use this file except in compliance with the License.
1923N/A#
1923N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1923N/A# or http://www.opensolaris.org/os/licensing.
1923N/A# See the License for the specific language governing permissions
1N/A# and limitations under the License.
1923N/A#
1923N/A# When distributing Covered Code, include this CDDL HEADER in each
1923N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1923N/A# If applicable, add the following below this CDDL HEADER, with the
1923N/A# fields enclosed by brackets "[]" replaced with your own identifying
1923N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1923N/A#
1923N/A# CDDL HEADER END
1923N/A#
1923N/A#
293N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
1923N/A# Use is subject to license terms.
1923N/A#
1923N/A
1923N/Ainclude $(SRC)/cmd/Makefile.cmd
1923N/A
1923N/A.PARALLEL:
1923N/A
1923N/ACOMMON_SUBDIRS= \
1923N/A filelist \
1923N/A fiocompress \
293N/A scripts \
2787N/A bootadm
1N/A
2787N/Ai386_SUBDIRS= \
1923N/A installgrub \
2787N/A mbr \
1923N/A symdef
2787N/A
2787N/ACOMMON_LINTSUBDIRS= \
1923N/A bootadm
1923N/A
1923N/Ai386_LINTSUBDIRS= \
1923N/A fiocompress \
1923N/A installgrub \
1N/A symdef
1923N/A
1923N/ACOMMON_MSGSUBDIRS= \
1923N/A bootadm \
1923N/A fiocompress
1923N/A
1N/Ai386_MSGSUBDIRS= \
1923N/A installgrub
1923N/A
1923N/A
1923N/Aall:= TARGET= all
1923N/Ainstall:= TARGET= install
1923N/Aclean:= TARGET= clean
1923N/Aclobber:= TARGET= clobber
293N/Alint:= TARGET= lint
1923N/A_msg:= TARGET= _msg
1923N/A
293N/A.KEEP_STATE:
2787N/A
1923N/ASUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
293N/ALINTSUBDIRS = $(COMMON_LINTSUBDIRS) $($(MACH)_LINTSUBDIRS)
1923N/AMSGSUBDIRS = $(COMMON_MSGSUBDIRS) $($(MACH)_MSGSUBDIRS)
1923N/A
1923N/Aall clean clobber: $(SUBDIRS)
1923N/A
293N/Ainstall: $(SUBDIRS)
1923N/A
1923N/Alint: $(LINTSUBDIRS)
2N/A
1923N/A_msg: $(MSGSUBDIRS)
1923N/A
1923N/AFRC:
1923N/A
1923N/A$(SUBDIRS): FRC
1923N/A @cd $@; pwd; $(MAKE) $(TARGET)
1923N/A