Makefile revision 3661
0N/A#
603N/A# CDDL HEADER START
0N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
0N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0N/A# or http://www.opensolaris.org/os/licensing.
0N/A# See the License for the specific language governing permissions
0N/A# and limitations under the License.
0N/A#
0N/A# When distributing Covered Code, include this CDDL HEADER in each
0N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0N/A# If applicable, add the following below this CDDL HEADER, with the
0N/A# fields enclosed by brackets "[]" replaced with your own identifying
0N/A# information: Portions Copyright [yyyy] [name of copyright owner]
0N/A#
0N/A# CDDL HEADER END
0N/A#
0N/A# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
0N/A#
0N/Ainclude ../../../make-rules/shared-macros.mk
0N/A
0N/APATH=/usr/bin:/usr/gnu/bin:/usr/sbin
0N/A
0N/ACOMPONENT_NAME= Python
0N/ACOMPONENT_VERSION= 2.6.8
0N/ACOMPONENT_PROJECT_URL= http://python.org/
0N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
0N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
0N/ACOMPONENT_ARCHIVE_HASH= \
0N/A sha256:c34036718ee1f091736677f543bc7960861cf9fcbea77d49572b59f7f1ab3c3f
0N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
0N/ACOMPONENT_BUGDB= utility/python
0N/A
0N/ATPNO= 9104
0N/A
0N/Ainclude $(WS_TOP)/make-rules/prep.mk
0N/Ainclude $(WS_TOP)/make-rules/configure.mk
0N/Ainclude $(WS_TOP)/make-rules/ips.mk
0N/Ainclude $(WS_TOP)/make-rules/lint-libraries.mk
0N/A
0N/A# We patch auto* files, so regenerate headers and configure
0N/ACOMPONENT_PREP_ACTION = \
0N/A (cd $(@D) ; autoheader ; autoconf)
0N/A
0N/A# This seems horribly wrong, but these defines break the ability to build c99
0N/A# compliant modules or with gcc.
0N/ACOMPONENT_POST_CONFIGURE_ACTION = \
0N/A (cd $(@D) ; \
0N/A perl -pi -e 's/(^\#define _POSIX_C_SOURCE.*)/\/* $$1 *\//' pyconfig.h ; \
0N/A perl -pi -e 's/^(\#define _XOPEN_SOURCE.*)/\/* $$1 *\//' pyconfig.h ; \
0N/A perl -pi -e 's/^(\#define _XOPEN_SOURCE_EXTENDED.*)/\/* $$1 *\//' \
0N/A pyconfig.h)
0N/A
0N/A# The python build is profile-guided for studio; to see the benefits of that,
0N/A# Python must be compiled with -xO5 and a different build target must be used.
0N/A# Use of xprofile requires that the same options be used during compilation and
0N/A# linking. The targets chosen are based on Solaris 11 minimum supported system
0N/A# requirements.
0N/ACOMPONENT_BUILD_TARGETS = profile-opt
0N/AXPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
0N/APYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
0N/APYFLAGS.sparc =
0N/ACFLAGS += -xO5 $(PYFLAGS.$(MACH))
0N/ALDFLAGS += -xO5 $(PYFLAGS.$(MACH))
0N/A
0N/A# we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with
0N/A# python-config
0N/ACC += $(CFLAGS)
0N/A
0N/AC99MODE=
0N/ACPPFLAGS += -IPython
0N/A
0N/A# so we find the ncurses headers
0N/ACPPFLAGS += -I/usr/include/ncurses
0N/A# enable large files how they did in JDS
0N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
0N/A# libffi for _ctypes
0N/ACPPFLAGS += $(shell pkg-config --cflags-only-I libffi)
0N/A
0N/A# Python puts its header files in a special place.
0N/ALINT_FLAGS += -I$(SOURCE_DIR)/Include
0N/A
0N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
0N/ACONFIGURE_OPTIONS += --enable-shared
0N/ACONFIGURE_OPTIONS += --with-system-ffi
0N/ACONFIGURE_OPTIONS += --without-gcc
0N/ACONFIGURE_OPTIONS += ac_cv_opt_olimit_ok=no
0N/ACONFIGURE_OPTIONS += ac_cv_olimit_ok=no
0N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
0N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
0N/ACONFIGURE_OPTIONS += CCSHARED="$(CC_PIC)"
0N/ACONFIGURE_OPTIONS += CXX="$(CXX)"
0N/ACONFIGURE_OPTIONS += CXXFLAGS="$(CXXFLAGS)"
0N/ACONFIGURE_OPTIONS += DFLAGS="-$(BITS)"
0N/ACONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)"
0N/ACOMPONENT_BUILD_ENV += DFLAGS="-$(BITS)"
0N/ACOMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)"
0N/A
0N/ACOMPONENT_TEST_TARGETS = test
0N/A
599N/A# 64 bit shared objects need to go in a 64-bit directory
0N/ACOMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python2.6/lib-dynload
0N/A
0N/A# common targets
0N/Abuild: $(BUILD_32_and_64)
0N/A
0N/A$(INSTALL_32): $(INSTALL_64)
0N/A
0N/Ainstall: $(INSTALL_32_and_64)
0N/A
0N/Atest: $(TEST_32_and_64)
0N/A
0N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
0N/A
0N/Ainclude $(WS_TOP)/make-rules/depend.mk
0N/A