make-rules/ant.mk
changeset 261 f7fc4962fa91
child 1352 1358a1e1ff4c
equal deleted inserted replaced
260:cc1837bbe69e 261:f7fc4962fa91
       
     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) 2011, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 
       
    24 ANT=/usr/bin/ant
       
    25 
       
    26 COMPONENT_BUILD_ENV += JAVA_HOME="$(JAVA_HOME)"
       
    27 # build the configured source
       
    28 $(BUILD_DIR)/%/.built:	$(SOURCE_DIR)/.prep
       
    29 	$(RM) -r $(@D) ; $(MKDIR) $(@D)
       
    30 	$(CLONEY) $(SOURCE_DIR) $(@D)
       
    31 	$(COMPONENT_PRE_BUILD_ACTION)
       
    32 	(cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \
       
    33 		$(ANT) $(COMPONENT_BUILD_ARGS) $(COMPONENT_BUILD_TARGETS))
       
    34 	$(COMPONENT_POST_BUILD_ACTION)
       
    35 	$(TOUCH) $@
       
    36 
       
    37 COMPONENT_INSTALL_ENV += JAVA_HOME="$(JAVA_HOME)"
       
    38 # install the built source into a prototype area
       
    39 $(BUILD_DIR)/%/.installed:	$(BUILD_DIR)/%/.built
       
    40 	$(COMPONENT_PRE_INSTALL_ACTION)
       
    41 	(cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) \
       
    42 		$(ANT) $(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS))
       
    43 	$(COMPONENT_POST_INSTALL_ACTION)
       
    44 	$(TOUCH) $@
       
    45 
       
    46 clean::
       
    47 	$(RM) -r $(SOURCE_DIR) $(BUILD_DIR)