Makefile revision f6e214c7418f43af38bd8c3a557e3d0a1d311cfa
729N/A#
729N/A# CDDL HEADER START
729N/A#
729N/A# The contents of this file are subject to the terms of the
729N/A# Common Development and Distribution License (the "License").
729N/A# You may not use this file except in compliance with the License.
729N/A#
729N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
729N/A# or http://www.opensolaris.org/os/licensing.
729N/A# See the License for the specific language governing permissions
729N/A# and limitations under the License.
729N/A#
729N/A# When distributing Covered Code, include this CDDL HEADER in each
729N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
729N/A# If applicable, add the following below this CDDL HEADER, with the
729N/A# fields enclosed by brackets "[]" replaced with your own identifying
729N/A# information: Portions Copyright [yyyy] [name of copyright owner]
729N/A#
729N/A# CDDL HEADER END
729N/A#
729N/A
729N/A#
729N/A# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
729N/A#
729N/A
729N/Ainclude ../../Makefile.lib
729N/Ainclude ../Makefile.lib
729N/A
729N/ASUBDIRS = $(MACH)
729N/A$(BUILD64)SUBDIRS += $(MACH64)
729N/A
729N/Aall := TARGET = all
851N/Aclean := TARGET = clean
729N/Aclobber := TARGET = clobber
729N/Ainstall := TARGET = install
729N/Alint := TARGET = lint
729N/Atest := TARGET = test
729N/A
729N/A.KEEP_STATE:
729N/A
729N/Aall clean clobber lint test: $(SUBDIRS)
729N/A
729N/Ainstall: $(SUBDIRS)
729N/A
729N/Ainstall_h:
729N/A
729N/Acheck: $(CHECKHDRS)
729N/A
729N/A$(SUBDIRS): FRC
729N/A @cd $@; pwd; $(MAKE) $(TARGET)
729N/A
729N/AFRC:
729N/A
729N/Ainclude ../../Makefile.targ
729N/Ainclude ../Makefile.targ
851N/A