Makefile revision 3996
1169e55d0181c539db6735301f93efd7e124aa08a_b#
1169e55d0181c539db6735301f93efd7e124aa08a_b# CDDL HEADER START
1169e55d0181c539db6735301f93efd7e124aa08a_b#
1169e55d0181c539db6735301f93efd7e124aa08a_b# The contents of this file are subject to the terms of the
1169e55d0181c539db6735301f93efd7e124aa08a_b# Common Development and Distribution License (the "License").
1169e55d0181c539db6735301f93efd7e124aa08a_b# You may not use this file except in compliance with the License.
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas#
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas# or http://www.opensolaris.org/os/licensing.
1169e55d0181c539db6735301f93efd7e124aa08a_b# See the License for the specific language governing permissions
1169e55d0181c539db6735301f93efd7e124aa08a_b# and limitations under the License.
bb4b60880557b1e53ac634bf58cf1f344aacb4d2matiphas#
1169e55d0181c539db6735301f93efd7e124aa08a_b# When distributing Covered Code, include this CDDL HEADER in each
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
bb4b60880557b1e53ac634bf58cf1f344aacb4d2matiphas# If applicable, add the following below this CDDL HEADER, with the
1169e55d0181c539db6735301f93efd7e124aa08a_b# fields enclosed by brackets "[]" replaced with your own identifying
1169e55d0181c539db6735301f93efd7e124aa08a_b# information: Portions Copyright [yyyy] [name of copyright owner]
1169e55d0181c539db6735301f93efd7e124aa08a_b#
1169e55d0181c539db6735301f93efd7e124aa08a_b# CDDL HEADER END
1169e55d0181c539db6735301f93efd7e124aa08a_b#
1169e55d0181c539db6735301f93efd7e124aa08a_b# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
1169e55d0181c539db6735301f93efd7e124aa08a_b#
1169e55d0181c539db6735301f93efd7e124aa08a_binclude ../../../make-rules/shared-macros.mk
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_NAME= jsonpointer
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_VERSION= 1.0
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_ARCHIVE_HASH= \
1169e55d0181c539db6735301f93efd7e124aa08a_b sha256:1e4945fe8d8d53ad501a564eaf574b0ae8e038eacc8717d127b59266d0ed0201
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphasCOMPONENT_ARCHIVE_URL= $(call pypi_url)
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_PROJECT_URL= http://pypi.python.org/pypi/jsonpointer
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_BUGDB= python-mod/jsonpointer
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_bTPNO= 14503
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas
1169e55d0181c539db6735301f93efd7e124aa08a_binclude $(WS_MAKE_RULES)/prep.mk
1169e55d0181c539db6735301f93efd7e124aa08a_binclude $(WS_MAKE_RULES)/setup.py.mk
1169e55d0181c539db6735301f93efd7e124aa08a_binclude $(WS_MAKE_RULES)/ips.mk
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas
1169e55d0181c539db6735301f93efd7e124aa08a_bASLR_MODE = $(ASLR_NOT_APPLICABLE)
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_b# Author's name uses non-ASCII characters.
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_BUILD_ENV += LC_ALL=en_US.UTF-8
1169e55d0181c539db6735301f93efd7e124aa08a_bCOMPONENT_INSTALL_ENV += LC_ALL=en_US.UTF-8
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_b# common targets
1169e55d0181c539db6735301f93efd7e124aa08a_bbuild: $(BUILD_NO_ARCH)
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphas
1169e55d0181c539db6735301f93efd7e124aa08a_binstall: $(INSTALL_NO_ARCH)
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_b# jsonpointer has no tests.
8bb4cfc8dd6632ca0e64da6608a02fbfdb13b94cmatiphastest: $(NO_TESTS)
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_b
1169e55d0181c539db6735301f93efd7e124aa08a_b