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