make/jprt.gmk
author duke
Wed, 05 Jul 2017 19:16:31 +0200
changeset 20626 ad67c34f79c2
parent 12254 a6afc5f91f1e
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     1
#
12254
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
     2
# Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fd16c54261b3 Initial load
duke
parents:
diff changeset
     4
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
fd16c54261b3 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 2099
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 2099
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    10
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
fd16c54261b3 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd16c54261b3 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fd16c54261b3 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
fd16c54261b3 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
fd16c54261b3 Initial load
duke
parents:
diff changeset
    16
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
fd16c54261b3 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
fd16c54261b3 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fd16c54261b3 Initial load
duke
parents:
diff changeset
    20
#
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 2099
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 2099
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 2099
diff changeset
    23
# questions.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    24
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    25
fd16c54261b3 Initial load
duke
parents:
diff changeset
    26
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    27
# JPRT rule to build
fd16c54261b3 Initial load
duke
parents:
diff changeset
    28
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    29
fd16c54261b3 Initial load
duke
parents:
diff changeset
    30
# To get all the bundles from JPRT, use:
fd16c54261b3 Initial load
duke
parents:
diff changeset
    31
#   jprt submit -buildenv HAVE_JPRT_SAVE_BUNDLES=true -control "..." ...
fd16c54261b3 Initial load
duke
parents:
diff changeset
    32
fd16c54261b3 Initial load
duke
parents:
diff changeset
    33
DEFAULT_BUILD_FLAVOR=product
fd16c54261b3 Initial load
duke
parents:
diff changeset
    34
fd16c54261b3 Initial load
duke
parents:
diff changeset
    35
# JPRT will define these when it builds
fd16c54261b3 Initial load
duke
parents:
diff changeset
    36
JPRT_ARCHIVE_BUNDLE=$(ABS_OUTPUTDIR)/$(DEFAULT_BUILD_FLAVOR)-bundle.zip
fd16c54261b3 Initial load
duke
parents:
diff changeset
    37
JPRT_ARCHIVE_INSTALL_BUNDLE=$(ABS_OUTPUTDIR)/$(DEFAULT_BUILD_FLAVOR)-install-bundle.zip
fd16c54261b3 Initial load
duke
parents:
diff changeset
    38
12254
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    39
ifeq ($(PLATFORM),windows)
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    40
  ZIPFLAGS=-q
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    41
else
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    42
  # store symbolic links as the link
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    43
  ZIPFLAGS=-q -y
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    44
endif
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    45
2096
da51837a7368 6791649: add "SKIP_MSIVAL2=true" to the Windows section of make/jprt.config
ohair
parents: 1215
diff changeset
    46
jprt_build_product:  sanity all_product_build
9618
83db8167c9f6 7043700: Regression for IcedTea builds
ohair
parents: 7654
diff changeset
    47
	( $(CD) $(OUTPUTDIR)/$(JDK_IMAGE_DIRNAME) && \
12254
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    48
	  $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    49
ifdef HAVE_JPRT_SAVE_BUNDLES
fd16c54261b3 Initial load
duke
parents:
diff changeset
    50
	( $(CD) $(OUTPUTDIR)/bundles && \
12254
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    51
	  $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_INSTALL_BUNDLE) . )
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    52
endif
fd16c54261b3 Initial load
duke
parents:
diff changeset
    53
fd16c54261b3 Initial load
duke
parents:
diff changeset
    54
jprt_build_fastdebug: fastdebug_build
9618
83db8167c9f6 7043700: Regression for IcedTea builds
ohair
parents: 7654
diff changeset
    55
	( $(CD) $(OUTPUTDIR)/$(REL_JDK_FASTDEBUG_IMAGE_DIR) && \
12254
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    56
	  $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    57
fd16c54261b3 Initial load
duke
parents:
diff changeset
    58
jprt_build_debug: debug_build
9618
83db8167c9f6 7043700: Regression for IcedTea builds
ohair
parents: 7654
diff changeset
    59
	( $(CD) $(OUTPUTDIR)/$(REL_JDK_DEBUG_IMAGE_DIR) && \
12254
a6afc5f91f1e 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 9618
diff changeset
    60
	  $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    61
fd16c54261b3 Initial load
duke
parents:
diff changeset
    62
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    63
#  PHONY
fd16c54261b3 Initial load
duke
parents:
diff changeset
    64
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    65
fd16c54261b3 Initial load
duke
parents:
diff changeset
    66
.PHONY: jprt_build_product jprt_build_fastdebug jprt_build_debug
fd16c54261b3 Initial load
duke
parents:
diff changeset
    67