components/pigz/Makefile
author Stacy Yeh <stacy.yeh@oracle.com>
Thu, 21 May 2015 13:48:49 -0700
changeset 4339 6501cf9c29f9
parent 3817 30b42c38bbc4
child 4393 963a977eeb62
permissions -rw-r--r--
21116842 add system-test targets to each component Makefile and to top-level Makefiles
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1226
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     1
#
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     2
# CDDL HEADER START
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     3
#
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     7
#
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    11
# and limitations under the License.
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    12
#
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    18
#
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    19
# CDDL HEADER END
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    20
#
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 2137
diff changeset
    21
# Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
1226
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    22
#
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    23
include ../../make-rules/shared-macros.mk
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    24
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    25
COMPONENT_NAME=		pigz
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    26
COMPONENT_VERSION=	2.2.5
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    27
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    28
COMPONENT_PROJECT_URL=	http://zlib.net/pigz/
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    29
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    30
COMPONENT_ARCHIVE_HASH=	\
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    31
    sha256:e37498cbf3a475d7ebe2519751188c29564bf8dd27ba68bd3c7fe1ac08792759
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    32
COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)$(COMPONENT_ARCHIVE)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    33
COMPONENT_BUGDB=	utility/pigz
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    34
COMPONENT_TEST_TARGETS=	test
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    35
1948
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1526
diff changeset
    36
TPNO=			11152
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1526
diff changeset
    37
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 2137
diff changeset
    38
include $(WS_MAKE_RULES)/prep.mk
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 2137
diff changeset
    39
include $(WS_MAKE_RULES)/justmake.mk
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 2137
diff changeset
    40
include $(WS_MAKE_RULES)/ips.mk
1226
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    41
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    42
PKG_PROTO_DIRS += $(BUILD_DIR_64)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    43
1526
e02c36c9062c 17656250 pigz doesn't compile on s12_33
John Beck <John.Beck@Oracle.COM>
parents: 1226
diff changeset
    44
studio_C99MODE=	$(studio_C99_ENABLE) 
e02c36c9062c 17656250 pigz doesn't compile on s12_33
John Beck <John.Beck@Oracle.COM>
parents: 1226
diff changeset
    45
1226
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    46
CC += $(CC_BITS)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    47
COMPONENT_BUILD_ARGS += CC="$(CC)"
2137
b1e25f951af0 19612384 pigz needs parallel uncompress
Michael Gerdts <mike.gerdts@oracle.com>
parents: 1948
diff changeset
    48
COMPONENT_BUILD_ARGS += CFLAGS="$(CFLAGS) -DHAVE_PTHREAD_SETNAME_NP"
1226
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    49
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    50
ASLR_MODE = $(ASLR_ENABLE)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    51
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    52
# common targets
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    53
build:		$(BUILD_64)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    54
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    55
install:	$(BUILD_64)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    56
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    57
test:		$(TEST_64)
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    58
4339
6501cf9c29f9 21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents: 3817
diff changeset
    59
system-test:    $(SYSTEM_TESTS_NOT_IMPLEMENTED)
6501cf9c29f9 21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents: 3817
diff changeset
    60
1226
5e2a9b83712f PSARC 2012/357 pigz
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    61
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 2137
diff changeset
    62
REQUIRED_PACKAGES += library/zlib
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 2137
diff changeset
    63
REQUIRED_PACKAGES += system/library