prep.mk revision 814
120N/A#
120N/A# CDDL HEADER START
120N/A#
120N/A# The contents of this file are subject to the terms of the
120N/A# Common Development and Distribution License (the "License").
120N/A# You may not use this file except in compliance with the License.
120N/A#
120N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
120N/A# or http://www.opensolaris.org/os/licensing.
120N/A# See the License for the specific language governing permissions
120N/A# and limitations under the License.
120N/A#
120N/A# When distributing Covered Code, include this CDDL HEADER in each
120N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
120N/A# If applicable, add the following below this CDDL HEADER, with the
120N/A# fields enclosed by brackets "[]" replaced with your own identifying
120N/A# information: Portions Copyright [yyyy] [name of copyright owner]
120N/A#
120N/A# CDDL HEADER END
120N/A#
120N/A# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
120N/A#
120N/A
120N/AUNPACK = $(WS_TOOLS)/userland-unpack
120N/AFETCH = $(WS_TOOLS)/userland-fetch
120N/A
120N/AARCHIVES += $(COMPONENT_ARCHIVE)
120N/ACLEAN_PATHS += $(SOURCE_DIR)
120N/A
120N/A# In order to override PATCH_DIR and PATCH_PATTERN in component makefiles, they
120N/A# need to be conditionally set here. This means that the override needs to
120N/A# happen prior to including prep.mk. Otherwise other variables set here which
120N/A# are based on those will be expanded too early for the override to take effect.
120N/A# You also can't override PATCHES after including prep.mk; if you want to
120N/A# append filenames to PATCHES, you'll have to set $(EXTRA_PATCHES) prior to
120N/A# inclusion.
120N/APATCH_DIR ?= patches
120N/A
120N/A# we may need patches only for use with parfait
120N/Aifeq ($(strip $(PARFAIT_BUILD)),yes)
120N/APARFAIT_PATCH_DIR = parfait
120N/Aendif
120N/APATCH_PATTERN ?= *.patch
120N/APATCHES = $(shell find $(PATCH_DIR) $(PARFAIT_PATCH_DIR) -type f -name '$(PATCH_PATTERN)' \
181N/A 2>/dev/null | sort) $(EXTRA_PATCHES)
120N/ASTAMPS = $(PATCHES:$(PATCH_DIR)/%=$(SOURCE_DIR)/.%ed)
120N/Aifeq ($(strip $(PARFAIT_BUILD)),yes)
181N/ASTAMPS += $(PATCHES:$(PARFAIT_PATCH_DIR)/%=$(SOURCE_DIR)/.%ed)
120N/Aendif
181N/A
181N/A$(SOURCE_DIR)/.%ed: $(PATCH_DIR)/%
181N/A $(GPATCH) -d $(@D) $(GPATCH_FLAGS) < $<
120N/A $(TOUCH) $@
120N/A
120N/Aifeq ($(strip $(PARFAIT_BUILD)),yes)
120N/A$(SOURCE_DIR)/.%ed: $(PARFAIT_PATCH_DIR)/%
$(GPATCH) -d $(@D) $(GPATCH_FLAGS) < $<
$(TOUCH) $@
endif
# template for download rules. add new rules with $(call download-rule, suffix)
define download-rule
ARCHIVES += $$(COMPONENT_ARCHIVE$(1))
CLOBBER_PATHS += $$(COMPONENT_ARCHIVE$(1))
$$(USERLAND_ARCHIVES)$$(COMPONENT_ARCHIVE$(1)): Makefile
$$(FETCH) --file $$@ \
$$(COMPONENT_ARCHIVE_URL$(1):%=--url %) \
$$(COMPONENT_ARCHIVE_HASH$(1):%=--hash %)
$$(TOUCH) $$@
endef
# Generate the download rules from the above template
NUM_ARCHIVES = 1 2 3 4 5 6 7
$(eval $(call download-rule,))
$(foreach suffix,$(NUM_ARCHIVES),$(eval $(call download-rule,_$(suffix))))
$(SOURCE_DIR)/.unpacked: download Makefile $(PATCHES)
$(RM) -r $(SOURCE_DIR)
$(UNPACK) $(UNPACK_ARGS) $(USERLAND_ARCHIVES)$(COMPONENT_ARCHIVE)
$(COMPONENT_POST_UNPACK_ACTION)
$(TOUCH) $@
$(SOURCE_DIR)/.patched: $(SOURCE_DIR)/.unpacked $(STAMPS)
$(TOUCH) $@
$(SOURCE_DIR)/.prep: $(SOURCE_DIR)/.patched
$(COMPONENT_PREP_ACTION)
$(TOUCH) $@
prep:: $(SOURCE_DIR)/.prep
download:: $(ARCHIVES:%=$(USERLAND_ARCHIVES)%)
clean::
$(RM) -r $(CLEAN_PATHS)
clobber:: clean
$(RM) -r $(CLOBBER_PATHS)