Makefile revision 5795
97a9a944b5887e91042b019776c41d5dd74557aferikabele#
97a9a944b5887e91042b019776c41d5dd74557aferikabele# CDDL HEADER START
97a9a944b5887e91042b019776c41d5dd74557aferikabele#
a945f35eff8b6a88009ce73de6d4c862ce58de3cslive# The contents of this file are subject to the terms of the
a945f35eff8b6a88009ce73de6d4c862ce58de3cslive# Common Development and Distribution License (the "License").
a945f35eff8b6a88009ce73de6d4c862ce58de3cslive# You may not use this file except in compliance with the License.
97a9a944b5887e91042b019776c41d5dd74557aferikabele#
97a9a944b5887e91042b019776c41d5dd74557aferikabele# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97a9a944b5887e91042b019776c41d5dd74557aferikabele# or http://www.opensolaris.org/os/licensing.
97a9a944b5887e91042b019776c41d5dd74557aferikabele# See the License for the specific language governing permissions
97a9a944b5887e91042b019776c41d5dd74557aferikabele# and limitations under the License.
06ba4a61654b3763ad65f52283832ebf058fdf1cslive#
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# When distributing Covered Code, include this CDDL HEADER in each
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# If applicable, add the following below this CDDL HEADER, with the
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# fields enclosed by brackets "[]" replaced with your own identifying
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# information: Portions Copyright [yyyy] [name of copyright owner]
06ba4a61654b3763ad65f52283832ebf058fdf1cslive#
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# CDDL HEADER END
97a9a944b5887e91042b019776c41d5dd74557aferikabele#
97a9a944b5887e91042b019776c41d5dd74557aferikabele
06ba4a61654b3763ad65f52283832ebf058fdf1cslive#
06ba4a61654b3763ad65f52283832ebf058fdf1cslive# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
06ba4a61654b3763ad65f52283832ebf058fdf1cslive#
06ba4a61654b3763ad65f52283832ebf058fdf1csliveinclude ../../../make-rules/shared-macros.mk
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_NAME= DBI
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_VERSION= 1.623
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_ARCHIVE_HASH= \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive sha256:912d73f9eb0601f592aa58897d9c6787e238d9780f30ac86059c83b7085de3a1
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_ARCHIVE_URL= http://backpan.perl.org/authors/id/T/TI/TIMB/$(COMPONENT_ARCHIVE)
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_PROJECT_URL= http://search.cpan.org/~timb/DBI/
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_BUGDB= perl-mod/dbi
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveTPNO= 17614
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveinclude $(WS_MAKE_RULES)/prep.mk
06ba4a61654b3763ad65f52283832ebf058fdf1csliveinclude $(WS_MAKE_RULES)/ips.mk
06ba4a61654b3763ad65f52283832ebf058fdf1csliveinclude $(WS_MAKE_RULES)/makemaker.mk
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_TEST_ARGS = -k -i
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_TEST_TARGETS = test
06ba4a61654b3763ad65f52283832ebf058fdf1csliveCOMPONENT_TEST_TRANSFORMS += \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^[mM]ake/d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^Files/d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^PERL/d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^Running/d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^chmod/d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^connect /d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/^Testing/d" ' \
06ba4a61654b3763ad65f52283832ebf058fdf1cslive '-e "/NullP/d" '
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveASLR_MODE = $(ASLR_NOT_APPLICABLE)
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1cslivebuild: $(BUILD_64)
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveinstall: $(INSTALL_64)
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1cslivetest: $(TEST_64)
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1cslivesystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
06ba4a61654b3763ad65f52283832ebf058fdf1cslive
06ba4a61654b3763ad65f52283832ebf058fdf1csliveREQUIRED_PACKAGES += system/library
06ba4a61654b3763ad65f52283832ebf058fdf1cslive