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