Makefile revision 2833
4910N/A#
4910N/A# CDDL HEADER START
4910N/A#
4910N/A# The contents of this file are subject to the terms of the
4910N/A# Common Development and Distribution License (the "License").
4910N/A# You may not use this file except in compliance with the License.
4910N/A#
4910N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4910N/A# or http://www.opensolaris.org/os/licensing.
4910N/A# See the License for the specific language governing permissions
4910N/A# and limitations under the License.
4910N/A#
4910N/A# When distributing Covered Code, include this CDDL HEADER in each
4910N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4910N/A# If applicable, add the following below this CDDL HEADER, with the
4910N/A# fields enclosed by brackets "[]" replaced with your own identifying
4910N/A# information: Portions Copyright [yyyy] [name of copyright owner]
4910N/A#
4910N/A# CDDL HEADER END
4910N/A#
4910N/A# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
4910N/A
4910N/A#
4910N/Ainclude ../../../make-rules/shared-macros.mk
4910N/A
4910N/APATH=/usr/bin:/usr/gnu/bin:/usr/sbin
4910N/A
4910N/ACOMPONENT_NAME= Python
5182N/ACOMPONENT_VERSION= 2.7.6
4910N/ACOMPONENT_PROJECT_URL= http://python.org/
4910N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
4910N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz
4910N/ACOMPONENT_ARCHIVE_HASH= \
5182N/A sha256:1fd68e81f8bf7386ff239b7faee9ba387129d2cf34eab13350bd8503a0bff6a1
5182N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
4910N/ACOMPONENT_BUGDB= utility/python
4910N/A
4910N/Ainclude $(WS_TOP)/make-rules/prep.mk
5182N/Ainclude $(WS_TOP)/make-rules/configure.mk
4910N/Ainclude $(WS_TOP)/make-rules/ips.mk
4910N/Ainclude $(WS_TOP)/make-rules/lint-libraries.mk
4910N/A
4910N/A# Need to preserve timestamp for Grammar files. If the pickle files are older,
4910N/A# Python will try to rebuild them.
4910N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.txt
4910N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.pickle
4910N/A
4910N/A# We patch auto* files, so regenerate headers and configure
4910N/ACOMPONENT_PREP_ACTION = \
4910N/A (cd $(@D) ; autoheader ; autoconf)
4910N/A
4976N/A# we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with
4910N/A# python-config
4910N/ACC += $(CFLAGS)
4910N/A
4910N/AC99MODE=
4910N/ACPPFLAGS += -IPython
4910N/A
4910N/A# to find the ncurses headers
4910N/ACPPFLAGS += -I/usr/include/ncurses
4910N/A# enable large files how they did in JDS
4910N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
4910N/A
4910N/A# libffi for _ctypes
4910N/ACPPFLAGS += $(shell pkg-config --cflags-only-I libffi)
4910N/A
4910N/A# because python links with $(CC) ... $(LDFLAGS) ...
4910N/ALDFLAGS = $(CC_BITS) $(CC_PIC)
4910N/A
4910N/A# build pic
4910N/ACFLAGS += $(CC_PIC)
4910N/A
4910N/A# The python build is profile-guided for studio; to see the benefits of that,
4910N/A# Python must be compiled with -xO5 and a different build target must be used.
4910N/A# Use of xprofile requires that the same options be used during compilation and
4910N/A# linking. The targets chosen are based on Solaris 11 minimum supported system
4910N/A# requirements.
4910N/ACOMPONENT_BUILD_TARGETS = profile-opt
4910N/AXPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
4910N/APYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
4910N/APYFLAGS.sparc =
4910N/ACFLAGS += -xO5 $(PYFLAGS.$(MACH))
4910N/ALDFLAGS += -xO5 $(PYFLAGS.$(MACH))
4910N/A
4910N/A# add /usr/gnu/lib to the library search/run path
4910N/ALDFLAGS.32 = -R/usr/gnu/lib -L/usr/gnu/lib
4910N/ALDFLAGS.64 = -R/usr/gnu/lib/$(MACH64) -L/usr/gnu/lib/$(MACH64)
4910N/ALDFLAGS += $(LDFLAGS.$(BITS))
4910N/A
4910N/A# Python puts its header files in a special place.
4910N/ALINT_FLAGS += -I$(SOURCE_DIR)/Include
4910N/A
4910N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
4910N/ACONFIGURE_OPTIONS += --enable-shared
4910N/ACONFIGURE_OPTIONS += --with-system-expat
4910N/ACONFIGURE_OPTIONS += --with-system-ffi
4910N/ACONFIGURE_OPTIONS += --without-gcc
4910N/ACONFIGURE_OPTIONS += --enable-ipv6
4910N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
4910N/ACONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
4910N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
4910N/ACONFIGURE_OPTIONS += DFLAGS="-$(BITS)"
4910N/ACONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)"
4910N/A
4910N/ACOMPONENT_BUILD_ENV += DFLAGS="-$(BITS)"
4910N/ACOMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)"
4910N/A
4910N/A# 64 bit shared objects need to go in a 64-bit directory
4910N/ACOMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python2.7/lib-dynload
4910N/A
4910N/A# Setup pyconfig.h file to support 32 & 64 bit.
4910N/A# If the /usr/lib/python2.7/lib2to3/*.pickle files are older than the related
4910N/A# *.txt files in the same directory, it will rebuild them anytime you try to
4910N/A# build a Python module. So here we also touch the pickle files to avoid this.
4910N/A#
4910N/ACOMPONENT_POST_INSTALL_ACTION= \
4910N/A (cd $(PROTOUSRDIR) ; \
4910N/A $(MV) include/python2.7/pyconfig.h include/python2.7/pyconfig-$(BITS).h ; \
4910N/A $(TOUCH) lib/python2.7/lib2to3/*.pickle)
4910N/A
4910N/AASLR_MODE = $(ASLR_ENABLE)
4910N/A
4910N/A# common targets
4910N/A$(INSTALL_32): $(INSTALL_64)
4910N/Abuild: $(BUILD_32_and_64)
4910N/Ainstall: $(INSTALL_32_and_64)
4910N/A
4910N/A# Using "-uall,-network" ensures all tests are run except the network tests.
4910N/A# The network tests contain many expected failures when run behind a firewall.
4910N/A# The "-v" ensures verbose mode. You can set TESTOPTS_PYTHON_TEST to a
4910N/A# particular test if you want to run just one test. For example, run gmake with
4910N/A# "-k" so it continues and does both 32-bit and 64-bit tests, even if there is a
4910N/A# failure, like this:
4910N/A# $ TESTOPTS_PYTHON_TEST=test_sys gmake -k test
4910N/A# Note that when a test succeeds, the builds/*/.tested file gets created. You
4910N/A# may need to remove these files, or run "gmake clobber" or "gmake clean"
4910N/A# between tests.
4910N/A#
4910N/ACOMPONENT_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)"
4910N/ACOMPONENT_TEST_TARGETS = test
4910N/A
4910N/Atest: $(TEST_32_and_64)
4910N/A
4910N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
4910N/A
4910N/Ainclude $(WS_TOP)/make-rules/depend.mk
4910N/A