Makefile revision 4337
41N/A#
41N/A# CDDL HEADER START
41N/A#
41N/A# The contents of this file are subject to the terms of the
41N/A# Common Development and Distribution License (the "License").
41N/A# You may not use this file except in compliance with the License.
41N/A#
41N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
41N/A# or http://www.opensolaris.org/os/licensing.
41N/A# See the License for the specific language governing permissions
41N/A# and limitations under the License.
41N/A#
41N/A# When distributing Covered Code, include this CDDL HEADER in each
41N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
41N/A# If applicable, add the following below this CDDL HEADER, with the
41N/A# fields enclosed by brackets "[]" replaced with your own identifying
41N/A# information: Portions Copyright [yyyy] [name of copyright owner]
41N/A#
41N/A# CDDL HEADER END
41N/A#
41N/A# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
41N/A#
41N/A
41N/Ainclude make-rules/shared-macros.mk
41N/A
41N/ASUBDIRS += components
41N/A
41N/Adownload: TARGET = download
41N/Aunpack: TARGET = unpack
41N/Apatch: TARGET = patch
41N/Aprep: TARGET = prep
41N/Abuild: TARGET = build
41N/Ainstall: TARGET = install
41N/Apublish: TARGET = publish
41N/Avalidate: TARGET = validate
41N/Aclean: TARGET = clean
41N/Aclobber: TARGET = clobber
41N/Asetup: TARGET = setup
41N/Atest: TARGET = test
41N/Asystem-test: TARGET = system-test
41N/Acomponent-hook: TARGET = component-hook
41N/A
41N/A.DEFAULT: publish
41N/A
41N/Adownload setup unpack patch prep build install publish validate clean clobber \
41N/Atest system-test component-hook: $(SUBDIRS)
41N/A
41N/A$(SUBDIRS): FORCE
41N/A @+echo "$(TARGET) $@" ; $(GMAKE) -C $@ $(TARGET)
41N/A
41N/AFORCE:
41N/A