Makefile revision 4337
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass#
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# CDDL HEADER START
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass#
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# The contents of this file are subject to the terms of the
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# Common Development and Distribution License (the "License").
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# You may not use this file except in compliance with the License.
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass#
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# or http://www.opensolaris.org/os/licensing.
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# See the License for the specific language governing permissions
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# and limitations under the License.
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass#
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# When distributing Covered Code, include this CDDL HEADER in each
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# If applicable, add the following below this CDDL HEADER, with the
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# fields enclosed by brackets "[]" replaced with your own identifying
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# information: Portions Copyright [yyyy] [name of copyright owner]
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass#
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# CDDL HEADER END
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass#
e0b25dbc0322a078f384c45b48e5690f23d7eb15Dav Glass# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
e0b25dbc0322a078f384c45b48e5690f23d7eb15Dav Glass#
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glassinclude ../../../make-rules/shared-macros.mk
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_NAME= pyparsing
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_VERSION= 2.0.1
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_ARCHIVE_HASH= \
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass sha256:0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_ARCHIVE_URL= $(call pypi_url)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_PROJECT_URL= https://pypi.python.org/pypi/pyparsing/
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassCOMPONENT_BUGDB= python-mod/pyparsing
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
762b21413a7bbc38b5c7b2d94385fb44f26f9d39Dav GlassTPNO= 15999
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glassinclude $(WS_MAKE_RULES)/prep.mk
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glassinclude $(WS_MAKE_RULES)/setup.py.mk
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glassinclude $(WS_MAKE_RULES)/ips.mk
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav GlassASLR_MODE = $(ASLR_NOT_APPLICABLE)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass# common targets
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glassbuild: $(BUILD_NO_ARCH)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glassinstall: $(INSTALL_NO_ARCH)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glasstest: $(NO_TESTS)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glasssystem-test: $(NO_TESTS)
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass
fc2d50365b169f761de7a15d7a4fe406b33fd403Dav Glass