Makefile revision 4374
883N/A#
883N/A# CDDL HEADER START
883N/A#
883N/A# The contents of this file are subject to the terms of the
883N/A# Common Development and Distribution License (the "License").
883N/A# You may not use this file except in compliance with the License.
883N/A#
883N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
883N/A# or http://www.opensolaris.org/os/licensing.
883N/A# See the License for the specific language governing permissions
883N/A# and limitations under the License.
883N/A#
883N/A# When distributing Covered Code, include this CDDL HEADER in each
883N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
883N/A# If applicable, add the following below this CDDL HEADER, with the
883N/A# fields enclosed by brackets "[]" replaced with your own identifying
883N/A# information: Portions Copyright [yyyy] [name of copyright owner]
883N/A#
883N/A# CDDL HEADER END
883N/A#
883N/A
883N/A#
1574N/A# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
883N/A#
883N/A
883N/Ainclude ../../make-rules/shared-macros.mk
883N/A
883N/ACOMPONENT_NAME= zlib
883N/ACOMPONENT_VERSION= 1.2.8
883N/ACOMPONENT_PROJECT_URL= http://www.zlib.net/
883N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
883N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
1273N/ACOMPONENT_ARCHIVE_HASH= \
883N/A sha256:36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d
883N/ACOMPONENT_ARCHIVE_URL= http://downloads.sourceforge.net/project/libpng/zlib/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
883N/ACOMPONENT_BUGDB= library/libz
883N/A
883N/ATPNO= 17611
883N/A
883N/Ainclude $(WS_MAKE_RULES)/prep.mk
883N/Ainclude $(WS_MAKE_RULES)/configure.mk
1653N/Ainclude $(WS_MAKE_RULES)/ips.mk
883N/Ainclude $(WS_MAKE_RULES)/lint-libraries.mk
956N/A
883N/A#
883N/A# We want to build hardware specific versions of the longest_match()
883N/A# function into our shared library that has been hand optimised to use
883N/A# some machine architecture specific instructions. Currently, we are doing
883N/A# it for the T4 architecture, but later other architectures may be added.
883N/A# This is done by taking advantage of the Solaris 11 linker-editor
883N/A# "Symbol Capabilities" feature. Refer to the section "Creating a Family
883N/A# of Symbol Capabilities Functions", under "Identifying Capability
1574N/A# Requirements" in the "Linker and Libraries Guide"
1574N/A# (http://docs.oracle.com/cd/E19963-01/html/819-0690/chapter2-13.html#giskh).
1574N/ACAP_OBJS_sparcv7 += ../../capabilities/sun4v/sparcv7/symcap.o
883N/ACAP_OBJS_sparcv9 += ../../capabilities/sun4v/sparcv9/symcap.o
883N/A$(BUILD_DIR)/%/.built: CAP_OBJS=$(CAP_OBJS_$*)
883N/A
883N/A# Zlib won't build without cloning. We need also to get rid of default
883N/A# Makefile and get our own version of zconf.h to avoid interactions
883N/A# between 32 and 64 bit builds.
883N/A# Also, the x86 architecture does not require alignment for multi-byte
883N/A# loads, so we can define UNALIGNED_OK for x86
883N/Aifeq ($(MACH), i386)
883N/ACOMPONENT_PRE_CONFIGURE_ACTION = ( \
887N/A $(CLONEY) $(SOURCE_DIR) $(@D); \
887N/A $(RM) $(@D)/Makefile $(@D)/zconf.h; \
887N/A $(CP) $(SOURCE_DIR)/zconf.h $(@D) )
913N/ACFLAGS_EXTRA = -DUNALIGNED_OK -DORIG_LONGEST_MATCH_GLOBAL
913N/APIC_OBJA=
913N/Aelse
913N/ACOMPONENT_PRE_CONFIGURE_ACTION = ( \
883N/A $(CLONEY) $(SOURCE_DIR) $(@D); \
883N/A $(RM) $(@D)/Makefile $(@D)/zconf.h; \
883N/A $(CP) $(SOURCE_DIR)/zconf.h $(@D) )
883N/ACFLAGS_EXTRA = -DORIG_LONGEST_MATCH_GLOBAL -xinline=%auto,no%longest_match
PIC_OBJA=$(CAP_OBJS)
endif
# Avoid *.lo.bc from Parfait analyze (see also parfait.patch).
PARFAIT += -X *.lo.bc
CFLAGS += $(CC_PIC)
CFLAGS += $(CFLAGS_EXTRA)
# We need to reset configure options here because zlib is confused with
# CC and CFLAGS definitions as configure parameters.
CONFIGURE_OPTIONS = --shared
CONFIGURE_OPTIONS += --prefix=/usr
CONFIGURE_OPTIONS += $(CONFIGURE_OPTIONS.$(BITS))
CONFIGURE_OPTIONS.64 += --libdir=/usr/lib/$(MACH64)
CONFIGURE_ENV += CC="$(CC)"
CONFIGURE_ENV += CFLAGS="$(CFLAGS) -xalias_level=basic -xdepend"
CONFIGURE_ENV += LDSHARED="$(CC) $(CFLAGS) -G"
# This LDSHARED definitions is forced to get all required options plus
# mapfile for result linking. While the one used with configure is just
# to allow Zlib detect capability of creating shared libraries.
COMPONENT_BUILD_ARGS = LDSHARED="$(CC) $(CFLAGS) -G -h libz.so.1 $(LD_OPTIONS_SO) -M ../../mapfile -L." PIC_OBJA=$(PIC_OBJA)
$(BUILD_DIR)/sparc%/.built: COMPONENT_PRE_BUILD_ACTION = ( \
cd capabilities; \
$(ENV) SUBDIRS="sun4v" BUILD_ARCH=$* $(GMAKE) build )
COMPONENT_TEST_TARGETS = test
build: $(BUILD_32_and_64)
install: $(INSTALL_32_and_64)
test: $(TEST_32_and_64)
clean::
$(RM) -r $(BUILD_DIR) $(PROTO_DIR) capabilities/*/*/*.o
REQUIRED_PACKAGES += system/library