components/tcltls/Makefile
author Liam Li<Liam.Li@Oracle.COM>
Thu, 14 Jul 2011 18:21:31 -0700
changeset 404 f62f2053b654
child 609 775168282b2f
permissions -rw-r--r--
7063147 migrate tcltls from SFW to userland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
404
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     1
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     2
# CDDL HEADER START
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     3
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     7
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    11
# and limitations under the License.
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    12
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    18
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    19
# CDDL HEADER END
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    20
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    21
# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    22
#
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    23
include ../../make-rules/shared-macros.mk
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    24
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    25
COMPONENT_NAME=		tls
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    26
COMPONENT_VERSION=	1.6
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    27
COMPONENT_SRC=		$(COMPONENT_NAME)$(COMPONENT_VERSION)
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    28
COMPONENT_ARCHIVE=	$(COMPONENT_SRC)-src.tar.gz
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    29
COMPONENT_ARCHIVE_HASH=	sha1:badee4d0a096e9951ffc1f82a6530f78b2404a2c
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    30
COMPONENT_ARCHIVE_URL=	http://sourceforge.net/projects/tls/files/tls/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)/download
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    31
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    32
include ../../make-rules/prep.mk
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    33
include ../../make-rules/configure.mk
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    34
include ../../make-rules/ips.mk
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    35
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    36
CONFIGURE_ENV += $(CONFIGURE_ENV.$(BITS))
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    37
CONFIGURE_ENV.64 +=	MACH64DIR="$(MACH64)"
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    38
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    39
CONFIGURE_OPTIONS +=	--with-tclinclude=/usr/include
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    40
CONFIGURE_OPTIONS +=	--enable-shared
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    41
CONFIGURE_OPTIONS +=	--enable-threads
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    42
CONFIGURE_OPTIONS +=	CFLAGS="$(CFLAGS) -KPIC -xstrconst"
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    43
CONFIGURE_OPTIONS +=	--with-tcl=$(CONFIGURE_LIBDIR.$(BITS))
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    44
CONFIGURE_OPTIONS.64 += --enable-64bit
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    45
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    46
COMPONENT_TEST_TARGETS = test
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    47
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    48
build:		$(BUILD_32_and_64)
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    49
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    50
install:	$(INSTALL_32_and_64)
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    51
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    52
test:		$(TEST_32_and_64)
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    53
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    54
BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    55
f62f2053b654 7063147 migrate tcltls from SFW to userland
Liam Li<Liam.Li@Oracle.COM>
parents:
diff changeset
    56
include ../../make-rules/depend.mk