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