components/pixz/Makefile
branchs11-update
changeset 2657 b69f0d9bab77
child 1948 2d1537e7942d
child 2910 f8b8cbc43356
equal deleted inserted replaced
2656:12a77e6a751c 2657:b69f0d9bab77
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 # Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 include ../../make-rules/shared-macros.mk
       
    24 
       
    25 COMPONENT_NAME=		pixz
       
    26 COMPONENT_VERSION=	1.0
       
    27 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    28 COMPONENT_PROJECT_URL=	http://github.com/vasi/pixz/
       
    29 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    30 COMPONENT_ARCHIVE_HASH=	\
       
    31     sha256:912c60de88f7eca2e1c6fe13eec5371f723018dca933796c47cd50bf6a349fc9
       
    32 COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)archive/$(COMPONENT_ARCHIVE)
       
    33 COMPONENT_BUGDB=	utility/pixz
       
    34 
       
    35 include ../../make-rules/prep.mk
       
    36 include ../../make-rules/justmake.mk
       
    37 include ../../make-rules/ips.mk
       
    38 
       
    39 PKG_PROTO_DIRS += $(BUILD_DIR_64)
       
    40 PKG_PROTO_DIRS += $(COMPONENT_DIR)/files
       
    41 
       
    42 # Userland default includes -mt which links with libthread which we don't need.
       
    43 studio_MT =
       
    44 
       
    45 # pixz's Makefile hard-codes some gcc-only flags in MYCFLAGS and MYLDFLAGS,
       
    46 # then appends CFLAGS & LDFLAGS to each.  Here we include their preset values
       
    47 # minus the gcc-only parts, so we can build with Studio.
       
    48 COMPONENT_BUILD_ARGS += CC="$(CC)"
       
    49 COMPONENT_BUILD_ARGS += MYCFLAGS='$(patsubst %,-I%/include,$(LIBPREFIX)) $(OPT)'
       
    50 COMPONENT_BUILD_ARGS += MYLDFLAGS='$(patsubst %,-L%/lib,$(LIBPREFIX)) $(OPT)'
       
    51 COMPONENT_BUILD_ARGS += CFLAGS="$(CFLAGS)"
       
    52 COMPONENT_BUILD_ARGS += LDFLAGS="$(CC_BITS)"
       
    53 
       
    54 ASLR_MODE = $(ASLR_ENABLE)
       
    55 
       
    56 # common targets
       
    57 build:		$(BUILD_64)
       
    58 
       
    59 install:	$(BUILD_64)
       
    60 
       
    61 test:		$(NO_TESTS)
       
    62 
       
    63 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    64 
       
    65 include ../../make-rules/depend.mk