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