Makefile revision 729
127N/A#
127N/A# CDDL HEADER START
127N/A#
127N/A# The contents of this file are subject to the terms of the
127N/A# Common Development and Distribution License (the "License").
127N/A# You may not use this file except in compliance with the License.
127N/A#
127N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
127N/A# or http://www.opensolaris.org/os/licensing.
127N/A# See the License for the specific language governing permissions
127N/A# and limitations under the License.
127N/A#
127N/A# When distributing Covered Code, include this CDDL HEADER in each
127N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
127N/A# If applicable, add the following below this CDDL HEADER, with the
127N/A# fields enclosed by brackets "[]" replaced with your own identifying
127N/A# information: Portions Copyright [yyyy] [name of copyright owner]
127N/A#
127N/A# CDDL HEADER END
127N/A#
127N/A
127N/A#
729N/A# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
127N/A#
127N/A
127N/Ainclude ../../make-rules/shared-macros.mk
127N/A
127N/ACOMPONENT_NAME= libtool
729N/ACOMPONENT_VERSION= 2.4.2
618N/ACOMPONENT_PROJECT_URL= http://www.gnu.org/software/libtool/
127N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
127N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
729N/ACOMPONENT_ARCHIVE_HASH= sha1:22b71a8b5ce3ad86e1094e7285981cae10e6ff88
127N/ACOMPONENT_ARCHIVE_URL= http://ftp.gnu.org/gnu/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
127N/A
729N/A# For now, we want to continue to provide the libltdl.so's (and their
729N/A# links) from libtool 1.5.22.
729N/A#
729N/ACOMPONENT_VERSION_1 = 1.5.22
729N/ACOMPONENT_SRC_1 = $(COMPONENT_NAME)-$(COMPONENT_VERSION_1)
729N/ACOMPONENT_ARCHIVE_1 = $(COMPONENT_SRC_1).tar.gz
729N/ACOMPONENT_ARCHIVE_HASH_1 = sha1:17353e66aeaac80ae188ea0a3a90609550ce3254
729N/ACOMPONENT_ARCHIVE_URL_1 = http://ftp.gnu.org/gnu/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE_1)
729N/ASOURCE_DIR_1 = $(COMPONENT_DIR)/$(COMPONENT_SRC_1)
729N/A
127N/Ainclude $(WS_TOP)/make-rules/prep.mk
127N/Ainclude $(WS_TOP)/make-rules/configure.mk
127N/Ainclude $(WS_TOP)/make-rules/ips.mk
127N/A
127N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
127N/ACONFIGURE_OPTIONS += --disable-static
127N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
127N/ACONFIGURE_OPTIONS += PERL="$(PERL)"
127N/A
729N/ACOMPONENT_PREP_ACTION = (cd $(@D) ; ./bootstrap)
729N/A
729N/A# Macros to configure, build, and install the old version for the time being.
729N/ABUILD_OLD_DIR_32 = $(COMPONENT_DIR)/build/$(COMPONENT_VERSION_1)-$(MACH32)
729N/ABUILD_OLD_DIR_64 = $(COMPONENT_DIR)/build/$(COMPONENT_VERSION_1)-$(MACH64)
729N/A
729N/A$(BUILD_OLD_DIR_32)/.configured: CONFIGURE_SCRIPT = $(SOURCE_DIR_1)/configure
729N/A$(BUILD_OLD_DIR_64)/.configured: CONFIGURE_SCRIPT = $(SOURCE_DIR_1)/configure
729N/A$(BUILD_OLD_DIR_32)/.configured: BITS=32
729N/A$(BUILD_OLD_DIR_64)/.configured: BITS=64
729N/A
729N/ABUILD_32 += $(BUILD_OLD_DIR_32)/.built
729N/ABUILD_64 += $(BUILD_OLD_DIR_64)/.built
729N/A
729N/AINSTALL_32 += $(BUILD_OLD_DIR_32)/.installed
729N/AINSTALL_64 += $(BUILD_OLD_DIR_64)/.installed
729N/A
729N/A# install the old version first
729N/A$(BUILD_DIR_32)/.installed: $(BUILD_OLD_DIR_32)/.installed
729N/A$(BUILD_DIR_64)/.installed: $(BUILD_OLD_DIR_64)/.installed
729N/A
729N/A# we need to prep the old version too (this should be handled in prep.mk)
729N/A$(SOURCE_DIR_1)/.unpacked: download Makefile $(PATCHES)
729N/A $(RM) -r $(SOURCE_DIR_1)
729N/A $(UNPACK) $(UNPACK_ARGS) $(COMPONENT_ARCHIVE_1)
729N/A $(TOUCH) $@
729N/A
729N/A# prep the old version first
729N/A$(SOURCE_DIR)/.prep: $(SOURCE_DIR_1)/.prep
729N/A
729N/A$(SOURCE_DIR_1)/.prep: $(SOURCE_DIR_1)/.unpacked
729N/A $(TOUCH) $@
729N/A
729N/Aprep:: $(SOURCE_DIR_1)/.prep
729N/A
729N/A
127N/A# common targets
127N/Abuild: $(BUILD_32_and_64)
127N/A
127N/Ainstall: $(INSTALL_32_and_64)
127N/A
181N/Atest: $(TEST_32_and_64)
181N/A
127N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
127N/A
127N/Ainclude $(WS_TOP)/make-rules/depend.mk