Makefile revision 6135
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# CDDL HEADER START
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# The contents of this file are subject to the terms of the
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# Common Development and Distribution License (the "License").
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# You may not use this file except in compliance with the License.
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# or http://www.opensolaris.org/os/licensing.
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# See the License for the specific language governing permissions
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# and limitations under the License.
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# When distributing Covered Code, include this CDDL HEADER in each
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# If applicable, add the following below this CDDL HEADER, with the
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# fields enclosed by brackets "[]" replaced with your own identifying
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# information: Portions Copyright [yyyy] [name of copyright owner]
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# CDDL HEADER END
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
a252c2771f59409d38b12d076513aeef89c3aeb1David Lawrence# Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley#
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleyinclude ../../../make-rules/shared-macros.mk
253f25f7ffaad40238f4d96ce29b6aee7e3ddbd8James Brister
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_NAME= anyjson
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_VERSION= 0.3.3
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_ARCHIVE_HASH= \
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley sha256:37812d863c9ad3e35c0734c42e0bf0320ce8c3bed82cd20ad54cb34d158157ba
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_ARCHIVE_URL= $(call pypi_url)
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_PROJECT_URL= http://bitbucket.org/runeh/anyjson/
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_BUGDB= python-mod/anyjson
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyTPNO= 14503
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleyinclude $(WS_MAKE_RULES)/prep.mk
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleyinclude $(WS_MAKE_RULES)/setup.py.mk
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleyinclude $(WS_MAKE_RULES)/ips.mk
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyASLR_MODE = $(ASLR_NOT_APPLICABLE)
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_TEST_DIR = $(SOURCE_DIR)
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob HalleyCOMPONENT_TEST_ARGS = setup.py test
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley# common targets
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleybuild: $(BUILD_NO_ARCH)
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleyinstall: $(INSTALL_NO_ARCH)
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halley
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleytest: $(TEST_NO_ARCH)
a252c2771f59409d38b12d076513aeef89c3aeb1David Lawrence
7e6c9a9a733f7a57ace98e4692573f42a2cad0edBob Halleysystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
173b32c660c1e4d5141b5ca740e8fab3c593652fBob Halley
173b32c660c1e4d5141b5ca740e8fab3c593652fBob Halley