883N/A#
883N/A# CDDL HEADER START
883N/A#
883N/A# The contents of this file are subject to the terms of the
883N/A# Common Development and Distribution License (the "License").
883N/A# You may not use this file except in compliance with the License.
883N/A#
883N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
883N/A# or http://www.opensolaris.org/os/licensing.
883N/A# See the License for the specific language governing permissions
883N/A# and limitations under the License.
883N/A#
883N/A# When distributing Covered Code, include this CDDL HEADER in each
883N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
883N/A# If applicable, add the following below this CDDL HEADER, with the
883N/A# fields enclosed by brackets "[]" replaced with your own identifying
883N/A# information: Portions Copyright [yyyy] [name of copyright owner]
883N/A#
883N/A# CDDL HEADER END
883N/A#
883N/A
883N/A#
2618N/A# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
883N/A#
883N/A
883N/Ainclude ../../make-rules/shared-macros.mk
883N/A
883N/A# for now, everything with a Makefile should be built
883N/ASUBDIRS = $(shell echo */Makefile | sed -e 's;/Makefile;;g')
883N/A
883N/A.PHONY: $(SUBDIRS)
883N/A
883N/Adownload: TARGET = download
883N/Aprep: TARGET = prep
883N/Abuild: TARGET = build
883N/Ainstall: TARGET = install
883N/Apublish: TARGET = publish
883N/Aclean: TARGET = clean
883N/Aclobber: TARGET = clobber
883N/Atest: TARGET = test
883N/A
883N/A.DEFAULT: publish
883N/A
883N/Adownload prep build install publish test: $(SUBDIRS)
883N/A
883N/Aclean: $(SUBDIRS)
883N/A $(RM) -r prototype build
883N/A
883N/Aclobber: $(SUBDIRS) clean
883N/A
883N/A$(SUBDIRS): FORCE
883N/A @cd $@ && echo "$(TARGET) $@" && $(MAKE) $(TARGET)
883N/A
883N/A# dependencies
883N/Aapache: core smf
883N/Acoreadm: core
883N/Afirewall: core
883N/Asmf: core
883N/Asysmon: core
883N/Atime: core
883N/Ausermgr: core
883N/Azconsole: core
883N/A
883N/AFORCE: