components/jsl/Makefile
branchs11-update
changeset 2647 c72026b4ef46
child 1496 f774cfa29f53
equal deleted inserted replaced
2646:86bc0997bd5f 2647:c72026b4ef46
       
     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) 2013, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 include ../../make-rules/shared-macros.mk
       
    24 
       
    25 COMPONENT_NAME=		jsl
       
    26 COMPONENT_VERSION=	0.3.0
       
    27 COMPONENT_PROJECT_URL=	http://www.javascriptlint.com
       
    28 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    29 COMPONENT_ARCHIVE=	$(COMPONENT_SRC)-src.tar.gz
       
    30 COMPONENT_ARCHIVE_HASH=	\
       
    31 	sha256:86f16792d71fc59b96f65eca65b1b7466dc046efe6d5ac04c6632f1315e83cfa
       
    32 COMPONENT_ARCHIVE_URL=	$(COMPONENT_PROJECT_URL)/download/$(COMPONENT_ARCHIVE)
       
    33 COMPONENT_BUGDB=	utility/jsl
       
    34 
       
    35 include ../../make-rules/prep.mk
       
    36 include ../../make-rules/justmake.mk
       
    37 include ../../make-rules/ips.mk
       
    38 
       
    39 # Preferred compiler set to gcc and not Studio as on Sparc architecture
       
    40 # some assembler code is required for locking which fails to compile on
       
    41 # solaris, when using gcc this is inlined (see jslock.c)
       
    42 COMPILER=	gcc
       
    43 
       
    44 COMPONENT_BUILD_ARGS += -f src/Makefile
       
    45 COMPONENT_BUILD_ARGS += CC="$(CC)"
       
    46 COMPONENT_BUILD_ARGS += COPTFLAGS="$(gcc_OPT)"
       
    47 COMPONENT_BUILD_TARGETS += all
       
    48 
       
    49 COMPONENT_INSTALL_ARGS += -f src/Makefile
       
    50 COMPONENT_INSTALL_ARGS += BINDIR=$(PROTOUSRBINDIR64)
       
    51 COMPONENT_INSTALL_ARGS += USRSHAREDIR=$(PROTOUSRSHAREDIR)
       
    52 COMPONENT_INSTALL_ARGS += INSTALL="$(INSTALL)"
       
    53 COMPONENT_INSTALL_ARGS += MKDIR="$(MKDIR)"
       
    54 
       
    55 # Enable ASLR for this component
       
    56 ASLR_MODE = $(ASLR_ENABLE)
       
    57 
       
    58 build:		$(BUILD_64)
       
    59 
       
    60 install:	$(INSTALL_64)
       
    61 
       
    62 test:
       
    63 	cd $(COMPONENT_SRC)/tests; $(PERL) ./run_tests.pl $(PROTOUSRBINDIR64)/jsl
       
    64 
       
    65 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    66 
       
    67 include ../../make-rules/depend.mk