Makefile revision 2349
458N/A#
458N/A# CDDL HEADER START
458N/A#
458N/A# The contents of this file are subject to the terms of the
458N/A# Common Development and Distribution License (the "License").
458N/A# You may not use this file except in compliance with the License.
458N/A#
458N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
458N/A# or http://www.opensolaris.org/os/licensing.
458N/A# See the License for the specific language governing permissions
458N/A# and limitations under the License.
458N/A#
458N/A# When distributing Covered Code, include this CDDL HEADER in each
458N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
458N/A# If applicable, add the following below this CDDL HEADER, with the
458N/A# fields enclosed by brackets "[]" replaced with your own identifying
458N/A# information: Portions Copyright [yyyy] [name of copyright owner]
458N/A#
458N/A# CDDL HEADER END
458N/A#
2349N/A# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
458N/A
458N/A#
458N/Ainclude ../../../make-rules/shared-macros.mk
458N/A
458N/APATH=/usr/bin:/usr/gnu/bin:/usr/sbin
458N/A
458N/ACOMPONENT_NAME= Python
952N/ACOMPONENT_VERSION= 2.7.3
618N/ACOMPONENT_PROJECT_URL= http://python.org/
458N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
458N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
844N/ACOMPONENT_ARCHIVE_HASH= \
952N/A sha256:726457e11cb153adc3f428aaf1901fc561a374c30e5e7da6742c0742a338663c
618N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
1273N/ACOMPONENT_BUGDB= utility/python
458N/A
458N/Ainclude $(WS_TOP)/make-rules/prep.mk
458N/Ainclude $(WS_TOP)/make-rules/configure.mk
458N/Ainclude $(WS_TOP)/make-rules/ips.mk
581N/Ainclude $(WS_TOP)/make-rules/lint-libraries.mk
458N/A
458N/A# We patch auto* files, so regenerate headers and configure
458N/ACOMPONENT_PREP_ACTION = \
458N/A (cd $(@D) ; autoheader ; autoconf)
458N/A
969N/A# we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with
969N/A# python-config
969N/ACC += $(CFLAGS)
969N/A
969N/AC99MODE=
969N/ACPPFLAGS += -IPython
969N/A
458N/A# to find the ncurses headers
458N/ACPPFLAGS += -I/usr/include/ncurses
969N/A# enable large files how they did in JDS
969N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
458N/A
458N/A# libffi for _ctypes
458N/ACPPFLAGS += $(shell pkg-config --cflags-only-I libffi)
458N/A
458N/A# because python links with $(CC) ... $(LDFLAGS) ...
458N/ALDFLAGS = $(CC_BITS) $(CC_PIC)
458N/A
458N/A# build pic
458N/ACFLAGS += $(CC_PIC)
458N/A
646N/A# The python build is profile-guided for studio; to see the benefits of that,
646N/A# Python must be compiled with -xO5 and a different build target must be used.
646N/A# Use of xprofile requires that the same options be used during compilation and
646N/A# linking. The targets chosen are based on Solaris 11 minimum supported system
646N/A# requirements.
646N/ACOMPONENT_BUILD_TARGETS = profile-opt
646N/AXPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
2349N/APYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
646N/APYFLAGS.sparc =
646N/ACFLAGS += -xO5 $(PYFLAGS.$(MACH))
646N/ALDFLAGS += -xO5 $(PYFLAGS.$(MACH))
646N/A
458N/A# add /usr/gnu/lib to the library search/run path
458N/ALDFLAGS.32 = -R/usr/gnu/lib -L/usr/gnu/lib
458N/ALDFLAGS.64 = -R/usr/gnu/lib/$(MACH64) -L/usr/gnu/lib/$(MACH64)
458N/ALDFLAGS += $(LDFLAGS.$(BITS))
458N/A
581N/A# Python puts its header files in a special place.
581N/ALINT_FLAGS += -I$(SOURCE_DIR)/Include
581N/A
458N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
458N/ACONFIGURE_OPTIONS += --enable-shared
458N/ACONFIGURE_OPTIONS += --with-system-expat
458N/ACONFIGURE_OPTIONS += --with-system-ffi
458N/ACONFIGURE_OPTIONS += --without-gcc
458N/ACONFIGURE_OPTIONS += --enable-ipv6
458N/ACONFIGURE_OPTIONS += ac_cv_opt_olimit_ok=no
458N/ACONFIGURE_OPTIONS += ac_cv_olimit_ok=no
458N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
458N/ACONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
969N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
458N/ACONFIGURE_OPTIONS += DFLAGS="-$(BITS)"
646N/ACONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)"
458N/A
458N/ACOMPONENT_BUILD_ENV += DFLAGS="-$(BITS)"
646N/ACOMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)"
458N/A
458N/A# patches/00-bits.patch removes some AC_CHECK_SIZEOF tests in order to
458N/A# generate a pyconfig.h that is both 32 and 64 bit compatible. We add this
458N/A# back to the environment so that configure can still work. configure.in and
458N/A# pyconfig.h.in should probably be rewhacked to do this more cleanly in the
458N/A# future.
458N/ACONFIGURE_OPTIONS.32 += ac_cv_sizeof_long=4
458N/ACONFIGURE_OPTIONS.64 += ac_cv_sizeof_long=8
458N/A
458N/A# 64 bit shared objects need to go in a 64-bit directory
458N/ACOMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python2.7/lib-dynload
458N/A
458N/A# common targets
458N/Abuild: $(BUILD_32_and_64)
458N/A
458N/A$(INSTALL_32): $(INSTALL_64)
458N/A
458N/Ainstall: $(INSTALL_32_and_64)
458N/A
458N/ACOMPONENT_TEST_TARGETS = test
458N/A
458N/Atest: $(TEST_32_and_64)
458N/A
458N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
458N/A
458N/Ainclude $(WS_TOP)/make-rules/depend.mk