Makefile revision 2374
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# CDDL HEADER START
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# The contents of this file are subject to the terms of the
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# Common Development and Distribution License (the "License").
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# You may not use this file except in compliance with the License.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# or http://www.opensolaris.org/os/licensing.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# See the License for the specific language governing permissions
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# and limitations under the License.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# When distributing Covered Code, include this CDDL HEADER in each
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# If applicable, add the following below this CDDL HEADER, with the
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# CDDL HEADER END
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinclude ../../../make-rules/shared-macros.mk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_NAME= Tk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# pkg does not like leading zeros, removed zero after dot.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_VERSION= 804.31
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncHUMAN_VERSION= 804.031
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_SRC= $(COMPONENT_NAME)-$(HUMAN_VERSION)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_PROJECT_URL= http://search.cpan.org/~srezic/Tk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_ARCHIVE_HASH= \
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync sha256:ce8d857a82a77f6bad3f94c1a8c3e3f32d5489bfb41619c3b8cae00103428054
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_ARCHIVE_URL= http://search.cpan.org/CPAN/authors/id/S/SR/SREZIC/$(COMPONENT_ARCHIVE)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_BUGDB= perl-mod/tk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinclude $(WS_TOP)/make-rules/prep.mk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinclude $(WS_TOP)/make-rules/ips.mk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinclude $(WS_TOP)/make-rules/makemaker.mk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync# Disbale ASLR for this module.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncASLR_MODE = $(ASLR_NOT_APPLICABLE)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncCOMPONENT_TEST_TARGETS = test
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncbuild: $(BUILD_32_and_64)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinstall: $(INSTALL_32_and_64)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsynctest: $(TEST_32_and_64)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinclude $(WS_TOP)/make-rules/depend.mk
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync