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