Makefile revision 3996
1276N/A#
1408N/A# CDDL HEADER START
1276N/A#
1276N/A# The contents of this file are subject to the terms of the
1276N/A# Common Development and Distribution License (the "License").
486N/A# You may not use this file except in compliance with the License.
486N/A#
486N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
486N/A# or http://www.opensolaris.org/os/licensing.
486N/A# See the License for the specific language governing permissions
486N/A# and limitations under the License.
486N/A#
486N/A# When distributing Covered Code, include this CDDL HEADER in each
486N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1408N/A# If applicable, add the following below this CDDL HEADER, with the
1408N/A# fields enclosed by brackets "[]" replaced with your own identifying
486N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1408N/A#
1408N/A# CDDL HEADER END
1408N/A#
1408N/A# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
1408N/A#
1408N/Ainclude ../../../make-rules/shared-macros.mk
1408N/A
1408N/ACOMPONENT_NAME= argparse
1408N/ACOMPONENT_VERSION= 1.2.1
486N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
1408N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
486N/ACOMPONENT_ARCHIVE_HASH= \
486N/A sha256:ddaf4b0a618335a32b6664d4ae038a1de8fbada3b25033f9021510ed2b3941a4
1408N/ACOMPONENT_ARCHIVE_URL= http://argparse.googlecode.com/files/$(COMPONENT_ARCHIVE)
1408N/ACOMPONENT_PROJECT_URL= http://code.google.com/p/argparse/
486N/ACOMPONENT_BUGDB= python-mod/argparse
486N/A
486N/ATPNO= 13152
486N/A
486N/A# The argparse module was integrated into Python 2.7, so we should only deliver
486N/A# a 2.6 module.
486N/APYTHON_VERSIONS = 2.6
486N/A
486N/Ainclude $(WS_MAKE_RULES)/prep.mk
486N/Ainclude $(WS_MAKE_RULES)/setup.py.mk
486N/Ainclude $(WS_MAKE_RULES)/ips.mk
486N/A
486N/A# common targets
486N/Abuild: $(BUILD_32)
486N/A
486N/Ainstall: $(INSTALL_32)
486N/A
486N/Atest: $(NO_TESTS)
486N/A
486N/A
1068N/A