5231N/A# The contents of this file are subject to the terms of the
5231N/A# Common Development and Distribution License (the "License").
5231N/A# You may not use this file except in compliance with the License.
5231N/A# See the License for the specific language governing permissions
5231N/A# and limitations under the License.
5231N/A# When distributing Covered Code, include this CDDL HEADER in each
5231N/A# If applicable, add the following below this CDDL HEADER, with the
5231N/A# fields enclosed by brackets "[]" replaced with your own identifying
5231N/A# information: Portions Copyright [yyyy] [name of copyright owner]
5680N/A# Copyright (c) 2011, 2015, Oracle
and/or its affiliates. All rights reserved.
5680N/A# Rules and Macros for building opens source software that just uses their
5680N/A# own make and no autoconf-style tools.
5231N/A# and define "build", "install" targets appropriate to building your component.
5231N/A# Any additional
pre/post configure, build, or install actions can be specified
5231N/A# in your Makefile by setting them in on of the following macros:
5680N/A# COMPONENT_PRE_BUILD_ACTION, COMPONENT_POST_BUILD_ACTION
5680N/A# COMPONENT_PRE_INSTALL_ACTION, COMPONENT_POST_INSTALL_ACTION
5231N/A# If component specific make targets need to be used for build or install, they
5231N/A# COMPONENT_BUILD_TARGETS, COMPONENT_INSTALL_TARGETS
5231N/ACOMPONENT_INSTALL_ARGS += DESTDIR=$(PROTO_DIR)
5680N/ACOMPONENT_INSTALL_ARGS += $(COMPONENT_INSTALL_ARGS.$(BITS))
5231N/A# build the configured source
5680N/A$(BUILD_DIR)/%/.built: $(SOURCE_DIR)/.prep
5680N/A $(RM) -r $(@D) ; $(MKDIR) $(@D)
5680N/A $(CLONEY) $(SOURCE_DIR) $(@D)
5231N/A $(COMPONENT_PRE_BUILD_ACTION)
5231N/A (cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \
5231N/A $(GMAKE) $(COMPONENT_BUILD_ARGS) $(COMPONENT_BUILD_TARGETS))
5231N/A $(COMPONENT_POST_BUILD_ACTION)
5231N/Aifeq ($(strip $(PARFAIT_BUILD)),yes)
# install the built source into a prototype area
$(BUILD_DIR)/%/.installed: $(BUILD_DIR)/%/.built
$(COMPONENT_PRE_INSTALL_ACTION)
(cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(GMAKE) \
$(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS))
$(COMPONENT_POST_INSTALL_ACTION)
$(BUILD_DIR)/%/.tested-and-compared: $(BUILD_DIR)/%/.built
$(RM) -rf $(COMPONENT_TEST_BUILD_DIR)
$(MKDIR) $(COMPONENT_TEST_BUILD_DIR)
$(COMPONENT_PRE_TEST_ACTION)
-(cd $(COMPONENT_TEST_DIR) ; \
$(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \
$(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) \
&> $(COMPONENT_TEST_OUTPUT)
$(COMPONENT_POST_TEST_ACTION)
$(COMPONENT_TEST_CREATE_TRANSFORMS)
$(COMPONENT_TEST_PERFORM_TRANSFORM)
$(COMPONENT_TEST_COMPARE)
$(COMPONENT_TEST_CLEANUP)
$(BUILD_DIR)/%/.tested: $(BUILD_DIR)/%/.built
$(COMPONENT_PRE_TEST_ACTION)
(cd $(COMPONENT_TEST_DIR) ; \
$(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \
$(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS))
$(COMPONENT_POST_TEST_ACTION)
$(COMPONENT_TEST_CLEANUP)
# Test the installed packages. The targets above depend on .built which
# means $(CLONEY) has already run. System-test needs cloning but not
# building; thus ideally, we would want to depend on .cloned here and below,
# but since we don't have that, we depend on .prep and run $(CLONEY) here.
$(BUILD_DIR)/%/.system-tested-and-compared: $(SOURCE_DIR)/.prep
$(RM) -rf $(COMPONENT_TEST_BUILD_DIR)
$(MKDIR) $(COMPONENT_TEST_BUILD_DIR)
$(CLONEY) $(SOURCE_DIR) $(@D)
$(COMPONENT_PRE_SYSTEM_TEST_ACTION)
-(cd $(COMPONENT_SYSTEM_TEST_DIR) ; \
$(COMPONENT_SYSTEM_TEST_ENV_CMD) $(COMPONENT_SYSTEM_TEST_ENV) \
$(COMPONENT_SYSTEM_TEST_CMD) \
$(COMPONENT_SYSTEM_TEST_ARGS) $(COMPONENT_SYSTEM_TEST_TARGETS)) \
&> $(COMPONENT_TEST_OUTPUT)
$(COMPONENT_POST_SYSTEM_TEST_ACTION)
$(COMPONENT_TEST_CREATE_TRANSFORMS)
$(COMPONENT_TEST_PERFORM_TRANSFORM)
$(COMPONENT_TEST_COMPARE)
$(COMPONENT_SYSTEM_TEST_CLEANUP)
$(BUILD_DIR)/%/.system-tested: $(SOURCE_DIR)/.prep
$(CLONEY) $(SOURCE_DIR) $(@D)
$(COMPONENT_PRE_SYSTEM_TEST_ACTION)
(cd $(COMPONENT_SYSTEM_TEST_DIR) ; \
$(COMPONENT_SYSTEM_TEST_ENV_CMD) $(COMPONENT_SYSTEM_TEST_ENV) \
$(COMPONENT_SYSTEM_TEST_CMD) \
$(COMPONENT_SYSTEM_TEST_ARGS) $(COMPONENT_SYSTEM_TEST_TARGETS))
$(COMPONENT_POST_SYSTEM_TEST_ACTION)
$(COMPONENT_SYSTEM_TEST_CLEANUP)
ifeq ($(strip $(PARFAIT_BUILD)),yes)
$(MAKE) PARFAIT_BUILD=yes parfait