make/jprt.gmk
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 0 fd16c54261b3
child 874 638ddad10e12
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     1
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
     2
# Copyright 2006-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
fd16c54261b3 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
fd16c54261b3 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
fd16c54261b3 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
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
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
fd16c54261b3 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
fd16c54261b3 Initial load
duke
parents:
diff changeset
    23
# have any questions.
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
fd16c54261b3 Initial load
duke
parents:
diff changeset
    39
jprt_build_product:  product_build
fd16c54261b3 Initial load
duke
parents:
diff changeset
    40
	( $(CD) $(OUTPUTDIR)/j2sdk-image && \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    41
	  $(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . )
fd16c54261b3 Initial load
duke
parents:
diff changeset
    42
ifdef HAVE_JPRT_SAVE_BUNDLES
fd16c54261b3 Initial load
duke
parents:
diff changeset
    43
	( $(CD) $(OUTPUTDIR)/bundles && \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    44
	  $(ZIPEXE) -q -r $(JPRT_ARCHIVE_INSTALL_BUNDLE) . )
fd16c54261b3 Initial load
duke
parents:
diff changeset
    45
endif
fd16c54261b3 Initial load
duke
parents:
diff changeset
    46
fd16c54261b3 Initial load
duke
parents:
diff changeset
    47
jprt_build_fastdebug: fastdebug_build
fd16c54261b3 Initial load
duke
parents:
diff changeset
    48
	( $(CD) $(OUTPUTDIR)-fastdebug/j2sdk-image && \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    49
	  $(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . )
fd16c54261b3 Initial load
duke
parents:
diff changeset
    50
fd16c54261b3 Initial load
duke
parents:
diff changeset
    51
jprt_build_debug: debug_build
fd16c54261b3 Initial load
duke
parents:
diff changeset
    52
	( $(CD) $(OUTPUTDIR)-debug/j2sdk-image && \
fd16c54261b3 Initial load
duke
parents:
diff changeset
    53
	  $(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . )
fd16c54261b3 Initial load
duke
parents:
diff changeset
    54
fd16c54261b3 Initial load
duke
parents:
diff changeset
    55
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    56
#  PHONY
fd16c54261b3 Initial load
duke
parents:
diff changeset
    57
################################################################
fd16c54261b3 Initial load
duke
parents:
diff changeset
    58
fd16c54261b3 Initial load
duke
parents:
diff changeset
    59
.PHONY: jprt_build_product jprt_build_fastdebug jprt_build_debug
fd16c54261b3 Initial load
duke
parents:
diff changeset
    60