Makefile revision 2058
131N/A#
131N/A# CDDL HEADER START
131N/A#
131N/A# The contents of this file are subject to the terms of the
131N/A# Common Development and Distribution License (the "License").
131N/A# You may not use this file except in compliance with the License.
131N/A#
131N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
131N/A# or http://www.opensolaris.org/os/licensing.
131N/A# See the License for the specific language governing permissions
131N/A# and limitations under the License.
131N/A#
131N/A# When distributing Covered Code, include this CDDL HEADER in each
131N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
131N/A# If applicable, add the following below this CDDL HEADER, with the
131N/A# fields enclosed by brackets "[]" replaced with your own identifying
131N/A# information: Portions Copyright [yyyy] [name of copyright owner]
131N/A#
131N/A# CDDL HEADER END
131N/A#
131N/A# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
131N/A#
844N/Ainclude ../../../make-rules/shared-macros.mk
131N/A
131N/ACOMPONENT_NAME= SQLAlchemy
131N/ACOMPONENT_VERSION= 0.7.9
131N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
131N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
131N/ACOMPONENT_ARCHIVE_HASH= \
618N/A sha256:4a89556cb55275d1af694dc4d5700d8bf0f83690bac16ab30340092ff25bb4d7
131N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
131N/ACOMPONENT_PROJECT_URL= http://www.sqlalchemy.org/
844N/ACOMPONENT_BUGDB= python-mod/sqlalchemy
844N/A
131N/Ainclude $(WS_TOP)/make-rules/prep.mk
131N/Ainclude $(WS_TOP)/make-rules/setup.py.mk
131N/Ainclude $(WS_TOP)/make-rules/ips.mk
131N/A
131N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
131N/A
131N/A# Needed to get around a broken /usr/lib/python2.7/config/Makefile
131N/A# See CR #16837431.
131N/ALD=$(CC)
131N/ALDSHARED=$(CC) -G
131N/APYTHON_ENV += CC="$(CC)"
131N/APYTHON_ENV += LDSHARED="$(LDSHARED)"
131N/APYTHON_ENV += LD="$(LD)"
131N/APYTHON_ENV += CFLAGS="$(CFLAGS)"
131N/ACOMPONENT_INSTALL_ENV += $(PYTHON_ENV)
181N/A
181N/ACOMPONENT_TEST_DIR= $(SOURCE_DIR)
131N/ACOMPONENT_TEST_ARGS= setup.py test
131N/ACOMPONENT_TEST_ENV= PYTHONPATH=$(PROTO_DIR)$(PYTHON_VENDOR_PACKAGES.32)
131N/A
# common targets
build: $(BUILD_32_and_64)
install: $(INSTALL_32_and_64)
test: $(TEST_32_and_64)
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
include $(WS_TOP)/make-rules/depend.mk