Makefile revision 493
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
72c5d65bd21b43b0bfc4b2816f39ef837161d79fBob Halley# CDDL HEADER START
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# The contents of this file are subject to the terms of the
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# Common Development and Distribution License (the "License").
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# You may not use this file except in compliance with the License.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# or http://www.opensolaris.org/os/licensing.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# See the License for the specific language governing permissions
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# and limitations under the License.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# When distributing Covered Code, include this CDDL HEADER in each
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# If applicable, add the following below this CDDL HEADER, with the
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# fields enclosed by brackets "[]" replaced with your own identifying
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# information: Portions Copyright [yyyy] [name of copyright owner]
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# CDDL HEADER END
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
72c5d65bd21b43b0bfc4b2816f39ef837161d79fBob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude ../../../make-rules/shared-macros.mk
68109fb883d3ca2922efeea62fe746313a634f4eBob Halley
68109fb883d3ca2922efeea62fe746313a634f4eBob HalleyCOMPONENT_NAME= Net-SSLeay
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_VERSION= 1.36
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_PROJECT_URL= http://search.cpan.org/dist/Net-SSLeay
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_ARCHIVE_HASH= sha1:e8cfb6355a596471518356a29bfe53ab2011c685
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_ARCHIVE_URL= http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/$(COMPONENT_ARCHIVE)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/prep.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/makemaker.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/ips.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# The component Makefile.PL file will ask some questions on whether we want
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# to run external tests, to which we want to answer with "n".
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_CONFIGURE_ENV += ; echo "n" |
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# common targets
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleybuild: $(BUILD_32)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinstall: $(INSTALL_32)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleytest: $(TEST_32)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/depend.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley