Makefile revision 1716
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias#
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# CDDL HEADER START
f53d38c9ce6bdc5ceb897835185f83d89bc122f6Alexis Tsogias#
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# The contents of this file are subject to the terms of the
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# Common Development and Distribution License (the "License").
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# You may not use this file except in compliance with the License.
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias#
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# or http://www.opensolaris.org/os/licensing.
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# See the License for the specific language governing permissions
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogias# and limitations under the License.
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias#
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# When distributing Covered Code, include this CDDL HEADER in each
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# If applicable, add the following below this CDDL HEADER, with the
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# fields enclosed by brackets "[]" replaced with your own identifying
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# information: Portions Copyright [yyyy] [name of copyright owner]
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias#
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# CDDL HEADER END
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias#
7dc37844730a8b23973139e9720574382de109e7Alexis Tsogias# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias#
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogiasinclude ../../../make-rules/shared-macros.mk
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis TsogiasPATH=/usr/bin:/usr/gnu/bin:/usr/sbin
93c8c4a8ce75cc2e02e03468a97b896f149d26ceAlexis Tsogias
93c8c4a8ce75cc2e02e03468a97b896f149d26ceAlexis TsogiasCOMPONENT_NAME= jsonrpclib
93c8c4a8ce75cc2e02e03468a97b896f149d26ceAlexis TsogiasCOMPONENT_VERSION= 0.1.3
93c8c4a8ce75cc2e02e03468a97b896f149d26ceAlexis TsogiasCOMPONENT_HASH= e3a3cde
93c8c4a8ce75cc2e02e03468a97b896f149d26ceAlexis TsogiasCOMPONENT_PROJECT_URL= https://github.com/joshmarshall/jsonrpclib
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis TsogiasCOMPONENT_SRC= joshmarshall-jsonrpclib-$(COMPONENT_HASH)
9d05f30775dd499da9e262b5c199b63c86cc239bJonathan von SchroederCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis TsogiasCOMPONENT_ARCHIVE_HASH= \
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias sha256:1480f0f189250d46552e29d2a6f04f5b92788ffd9b8f51d06fdaeee03aa2d8bb
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis TsogiasCOMPONENT_ARCHIVE_URL=https://github.com/joshmarshall/jsonrpclib/tarball/$(COMPONENT_HASH)
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis TsogiasCOMPONENT_BUGDB= python-mod/jsonrpclib
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogias
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogiasinclude $(WS_TOP)/make-rules/prep.mk
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogiasinclude $(WS_TOP)/make-rules/setup.py.mk
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogiasinclude $(WS_TOP)/make-rules/ips.mk
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias# common targets
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogiasbuild: $(BUILD_NO_ARCH)
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogias
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogiasinstall: $(INSTALL_NO_ARCH)
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogiastest: $(NO_TESTS)
f89fe954ae0f396db7678137c820ea2fd485a78eAlexis Tsogias
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis TsogiasBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
658187feb755694eb5ff29561bda7109c22c743cAlexis Tsogias
409eb8adf8c7ee0609aef256b67f5dfad2fb6386Alexis Tsogiasinclude $(WS_TOP)/make-rules/depend.mk
f05c6ef44524347189dfdd91cda948d3e7d6158bJonathan von Schroeder