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