make/Jprt.gmk

Tue, 15 Jul 2014 18:46:37 -0700

author
mikael
date
Tue, 15 Jul 2014 18:46:37 -0700
changeset 1140
6d0ebf545f49
parent 983
aec13f9340a9
child 1155
c7b4d867b82d
permissions
-rw-r--r--

8029797: Let jprt run configure when building
Reviewed-by: dholmes

     1 #
     2 # Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Oracle designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Oracle in the LICENSE file that accompanied this code.
    10 #
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14 # version 2 for more details (a copy is included in the LICENSE file that
    15 # accompanied this code).
    16 #
    17 # You should have received a copy of the GNU General Public License version
    18 # 2 along with this work; if not, write to the Free Software Foundation,
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20 #
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22 # or visit www.oracle.com if you need additional information or have any
    23 # questions.
    24 #
    26 # This file is contains targets utilities needed by JPRT.
    28 ifndef JPRT_ARCHIVE_BUNDLE
    29   JPRT_ARCHIVE_BUNDLE=/tmp/jprt_bundles/j2sdk-image.zip
    30 endif
    31 ifndef JPRT_ARCHIVE_INSTALL_BUNDLE
    32   JPRT_ARCHIVE_INSTALL_BUNDLE=/tmp/jprt_bundles/product-install.zip
    33 endif
    35 # This target must be called in the context of a SPEC file
    36 jprt_bundle: $(JPRT_ARCHIVE_BUNDLE)
    37 	@$(call CheckIfMakeAtEnd)
    39 # This target must be called in the context of a SPEC file
    40 $(JPRT_ARCHIVE_BUNDLE): bundles
    41 	$(MKDIR) -p $(@D)
    42 	$(RM) $@
    43 	$(CP) $(BUILD_OUTPUT)/bundles/$(JDK_IMAGE_SUBDIR).zip $@
    45 SRC_JDK_IMAGE_DIR := $(JDK_IMAGE_DIR)
    46 SRC_JRE_IMAGE_DIR := $(JRE_IMAGE_DIR)
    47 SRC_JDK_BUNDLE_DIR := $(JDK_BUNDLE_DIR)
    48 SRC_JRE_BUNDLE_DIR := $(JRE_BUNDLE_DIR)
    50 # Bundle up the images
    51 bundles: all bundles-only
    52 bundles-only: start-make
    53 	@$(call TargetEnter)
    54 	$(MKDIR) -p $(BUILD_OUTPUT)/bundles
    55 	$(CD) $(SRC_JDK_IMAGE_DIR) && $(ZIP) -y -q -r $(BUILD_OUTPUT)/bundles/$(JDK_IMAGE_SUBDIR).zip .
    56 	$(CD) $(SRC_JRE_IMAGE_DIR) && $(ZIP) -y -q -r $(BUILD_OUTPUT)/bundles/$(JRE_IMAGE_SUBDIR).zip .
    57 	if [ -d $(BUILD_OUTPUT)/install/bundles ] ; then \
    58 	  $(CD) $(BUILD_OUTPUT)/install/bundles && $(ZIP) -y -q -r $(JPRT_ARCHIVE_INSTALL_BUNDLE) . ; \
    59 	fi
    60 	@$(call TargetExit)
    62 # Copy images to one unified location regardless of platform etc.
    63 final-images: all final-images-only
    64 final-images-only: start-make
    65 	@$(call TargetEnter)
    66 	$(RM) -r $(BUILD_OUTPUT)/final-images
    67 	$(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JDK_IMAGE_SUBDIR)
    68 	$(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JRE_IMAGE_SUBDIR)
    69 	$(CP) -R -P $(SRC_JDK_IMAGE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JDK_IMAGE_SUBDIR)/
    70 	$(CP) -R -P $(SRC_JRE_IMAGE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JRE_IMAGE_SUBDIR)/
    71         ifeq ($(OPENJDK_TARGET_OS),macosx)
    72 	  $(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JDK_BUNDLE_SUBDIR)
    73 	  $(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JRE_BUNDLE_SUBDIR)
    74 	  $(CP) -R -P $(SRC_JDK_BUNDLE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JDK_BUNDLE_SUBDIR)/
    75 	  $(CP) -R -P $(SRC_JRE_BUNDLE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JRE_BUNDLE_SUBDIR)/
    76         endif
    77 	@$(call TargetExit)
    80 ###########################################################################
    81 # Phony targets
    82 .PHONY: jprt_bundle bundles bundles-only final-images final-images-only

mercurial