make/Jprt.gmk

Mon, 14 Sep 2020 16:42:03 +0100

author
andrew
date
Mon, 14 Sep 2020 16:42:03 +0100
changeset 2554
7f60c2d9823e
parent 1174
6cb876613230
child 1288
7801df19942d
permissions
-rw-r--r--

Added tag jdk8u272-b08 for changeset 34c6baf21464

     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           ifdef ALT_BSDIFF_DIR
    29 	    @$(ECHO) " --with-bsdiff-dir=$(call UnixPath,$(ALT_BSDIFF_DIR)) " >> $@.tmp
    30           endif
    31 ifndef JPRT_ARCHIVE_BUNDLE
    32   JPRT_ARCHIVE_BUNDLE=/tmp/jprt_bundles/j2sdk-image.zip
    33 endif
    34 ifndef JPRT_ARCHIVE_INSTALL_BUNDLE
    35   JPRT_ARCHIVE_INSTALL_BUNDLE=/tmp/jprt_bundles/product-install.zip
    36 endif
    38 ifeq ($(SKIP_BOOT_CYCLE), false)
    39   jprt_bundle: bootcycle-images
    40 endif
    42 # This target must be called in the context of a SPEC file
    43 jprt_bundle: $(JPRT_ARCHIVE_BUNDLE)
    44 	@$(call CheckIfMakeAtEnd)
    46 # This target must be called in the context of a SPEC file
    47 $(JPRT_ARCHIVE_BUNDLE): bundles
    48 	$(MKDIR) -p $(@D)
    49 	$(RM) $@
    50 	$(CP) $(BUILD_OUTPUT)/bundles/$(JDK_IMAGE_SUBDIR).zip $@
    52 SRC_JDK_IMAGE_DIR := $(JDK_IMAGE_DIR)
    53 SRC_JRE_IMAGE_DIR := $(JRE_IMAGE_DIR)
    54 SRC_JDK_BUNDLE_DIR := $(JDK_BUNDLE_DIR)
    55 SRC_JRE_BUNDLE_DIR := $(JRE_BUNDLE_DIR)
    57 # Bundle up the images
    58 bundles: all bundles-only
    59 bundles-only: start-make
    60 	@$(call TargetEnter)
    61 	$(MKDIR) -p $(BUILD_OUTPUT)/bundles
    62 	$(CD) $(SRC_JDK_IMAGE_DIR) && $(ZIP) -y -q -r $(BUILD_OUTPUT)/bundles/$(JDK_IMAGE_SUBDIR).zip .
    63 	$(CD) $(SRC_JRE_IMAGE_DIR) && $(ZIP) -y -q -r $(BUILD_OUTPUT)/bundles/$(JRE_IMAGE_SUBDIR).zip .
    64 	if [ -d $(BUILD_OUTPUT)/install/bundles ] ; then \
    65 	  $(CD) $(BUILD_OUTPUT)/install/bundles && $(ZIP) -y -q -r $(JPRT_ARCHIVE_INSTALL_BUNDLE) . ; \
    66 	fi
    67 	@$(call TargetExit)
    69 # Copy images to one unified location regardless of platform etc.
    70 final-images: all final-images-only
    71 final-images-only: start-make
    72 	@$(call TargetEnter)
    73 	$(RM) -r $(BUILD_OUTPUT)/final-images
    74 	$(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JDK_IMAGE_SUBDIR)
    75 	$(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JRE_IMAGE_SUBDIR)
    76 	$(CP) -R -P $(SRC_JDK_IMAGE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JDK_IMAGE_SUBDIR)/
    77 	$(CP) -R -P $(SRC_JRE_IMAGE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JRE_IMAGE_SUBDIR)/
    78         ifeq ($(OPENJDK_TARGET_OS),macosx)
    79 	  $(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JDK_BUNDLE_SUBDIR)
    80 	  $(MKDIR) -p $(BUILD_OUTPUT)/final-images/$(JRE_BUNDLE_SUBDIR)
    81 	  $(CP) -R -P $(SRC_JDK_BUNDLE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JDK_BUNDLE_SUBDIR)/
    82 	  $(CP) -R -P $(SRC_JRE_BUNDLE_DIR)/* $(BUILD_OUTPUT)/final-images/$(JRE_BUNDLE_SUBDIR)/
    83         endif
    84 	@$(call TargetExit)
    87 ###########################################################################
    88 # Phony targets
    89 .PHONY: jprt_bundle bundles bundles-only final-images final-images-only

mercurial