components/python/argparse/Makefile
author Rich Burridge <rich.burridge@oracle.com>
Wed, 14 Aug 2013 10:54:58 -0700
changeset 1434 c782e620dd26
parent 1314 aa76e58a37ce
child 1480 1d8d2e9374cc
permissions -rw-r--r--
17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1314
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     7
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    12
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    18
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    20
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    21
# Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    22
#
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    23
include ../../../make-rules/shared-macros.mk
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    24
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    25
COMPONENT_NAME=		argparse
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    26
COMPONENT_VERSION=	1.2.1
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    27
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    28
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    29
COMPONENT_ARCHIVE_HASH=	\
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    30
    sha256:ddaf4b0a618335a32b6664d4ae038a1de8fbada3b25033f9021510ed2b3941a4
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    31
COMPONENT_ARCHIVE_URL=	http://argparse.googlecode.com/files/$(COMPONENT_ARCHIVE)
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    32
COMPONENT_PROJECT_URL=	http://code.google.com/p/argparse/
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    33
COMPONENT_BUGDB=	python-mod/argparse
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    34
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    35
# The argparse module was integrated into Python 2.7, so we should only deliver
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    36
# a 2.6 module.
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    37
PYTHON_VERSIONS = 2.6
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    38
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    39
include $(WS_TOP)/make-rules/prep.mk
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    40
include $(WS_TOP)/make-rules/setup.py.mk
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    41
include $(WS_TOP)/make-rules/ips.mk
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    42
1434
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1314
diff changeset
    43
ASLR_MODE = $(ASLR_NOT_APPLICABLE)
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1314
diff changeset
    44
1314
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    45
# common targets
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    46
build:		$(BUILD_32)
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    47
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    48
install:	$(INSTALL_32)
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    49
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    50
test:		$(NO_TESTS)
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    51
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    52
BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    53
aa76e58a37ce PSARC 2013/096 argparse version 1.2.1 - Python command-line parsing library
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    54
include $(WS_TOP)/make-rules/depend.mk