jdk/make/Makefile
author duke
Wed, 05 Jul 2017 17:07:47 +0200
changeset 4931 09a4a502728d
parent 4917 c98da2209f8c
child 5506 202f599c92aa
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# Copyright 1995-2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Makefile for building and packaging all of the JDK and the JRE. See
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# also included files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
BUILDDIR=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
include $(BUILDDIR)/common/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# Make sure we are clear what the default target is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
default_target: all
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# Check target
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
check: variable_check
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
# Help target
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
help: intro_help target_help variable_help notes_help examples_help
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
# Intro help message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
intro_help:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
	@$(ECHO) "\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
Makefile for the main JDK workspace. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
Default behavior is to use the BOOTDIR javac to bootstrap the build and \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import in pre-built components like the VM from the JDK_IMPORT_PATH. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
# Target help
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
target_help:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
	@$(ECHO) "\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
--- Common Targets ---  \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
all               -- build the core JDK (default target) \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
help              -- Print out help information \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
check             -- Check make variable values for correctness \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
sanity            -- Perform detailed sanity checks on system and settings \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
openjdk           -- synonym for 'OPENJDK=true all' \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
fastdebug         -- build the core JDK in 'fastdebug' mode (-g -O) \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
debug             -- build the core JDK in 'debug' mode (-g) \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
clean             -- remove all built and imported files \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
clobber           -- same as clean \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
docs              -- run javadoc to generate the JDK documentation \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
images            -- build the jdk and jre image directories \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
import            -- copy in the pre-built components (e.g. VM) \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
import_product    -- copy in the product components \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
import_fastdebug  -- copy in the fastdebug components \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
import_debug      -- copy in the debug components \n\
4524
697144bd8b04 6909572: Add a new target for building modules
mchung
parents: 2302
diff changeset
    77
modules           -- build the jdk and jre module images (experimental) \n\
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
sccs_get          -- make sure all SCCS files are up-to-date (need SCCS) \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
create_links      -- create softlinks in Solaris 32bit build to 64bit dirs \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
# Variable help (only common ones used by this workspace)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
variable_help: variable_help_intro variable_list variable_help_end
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
variable_help_intro:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
	@$(ECHO) "--- Common Variables ---"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
variable_help_end:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
	@$(ECHO) " "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
# One line descriptions for the variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
OUTPUTDIR.desc             = Output directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
SLASH_JAVA.desc            = Root of all build tools, e.g. /java or J:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
BOOTDIR.desc               = JDK used to boot the build
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
LANGTOOLS_DIST.desc        = langtools dist area used to build
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
CORBA_DIST.desc            = corba dist area
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
JAXP_DIST.desc             = jaxp dist area
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
JAXWS_DIST.desc            = jaxws dist area
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
JDK_IMPORT_PATH.desc       = JDK used to import components of the build
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
COMPILER_PATH.desc         = Compiler install directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
CACERTS_FILE.desc          = Location of certificates file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
DEVTOOLS_PATH.desc         = Directory containing zip and unzip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
CUPS_HEADERS_PATH.desc     = Include directory location for CUPS header files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
DXSDK_PATH.desc            = Root directory of DirectX SDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
MSDEVTOOLS_PATH.desc       = Root directory of VC++ tools (e.g. rc.exe)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
MSVCRT_DLL_PATH.desc       = Directory containing mscvrt.dll
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
# Make variables to print out (description and value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
VARIABLE_PRINTVAL_LIST +=       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    OUTPUTDIR                   \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    PARALLEL_COMPILE_JOBS       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    SLASH_JAVA                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    BOOTDIR                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    LANGTOOLS_DIST              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    JAXWS_DIST                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    CORBA_DIST                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    JAXP_DIST                   \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    JDK_IMPORT_PATH             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    COMPILER_PATH               \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    CACERTS_FILE                \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    DEVTOOLS_PATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
# Make variables that should refer to directories that exist
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
VARIABLE_CHECKDIR_LIST +=       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    SLASH_JAVA                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    BOOTDIR                     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    JDK_IMPORT_PATH             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    COMPILER_PATH               \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    DEVTOOLS_PATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
# Make variables that should refer to files that exist
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
VARIABLE_CHECKFIL_LIST +=       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    CACERTS_FILE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
# Some are windows specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
VARIABLE_PRINTVAL_LIST +=       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    DXSDK_PATH                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    MSDEVTOOLS_PATH             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    MSVCRT_DLL_PATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
VARIABLE_CHECKDIR_LIST +=       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    DXSDK_PATH                  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    MSDEVTOOLS_PATH             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    MSVCRT_DLL_PATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
# For pattern rules below, so all are treated the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
# Complete variable check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
variable_list: $(DO_PRINTVAL_LIST) variable_check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
# Pattern rule for printing out a variable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
%.printval:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
	@$(ECHO) "  ALT_$* - $($*.desc)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
	@$(ECHO) "  \t $*=$($*)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
# Pattern rule for checking to see if a variable with a directory exists
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
%.checkdir:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
	@if [ ! -d $($*) ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
# Pattern rule for checking to see if a variable with a file exists
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
%.checkfil:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
	@if [ ! -f $($*) ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
# Misc notes on help
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
notes_help:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
	@$(ECHO) "\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
--- Notes --- \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
- All builds use same output directory unless overridden with \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 \t to use the clean target first. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
- LANGTOOLS_DIST must refer to a langtools dist area,  used to build. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
- CORBA_DIST must refer to a corba dist area. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
- JAXP_DIST must refer to a jaxp dist area. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
- JAXWS_DIST must refer to a jaxws dist area. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
 \t builds or previous release JDK builds will work. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
- The 'debug' target and 'import_debug' only works when a debug promoted \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
 \t build is available, and they currently are not. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
- The fastest builds have been when the workspace and the BOOTDIR are on \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
 \t local disk. \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
examples_help:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
	@$(ECHO) "\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
--- Examples --- \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
  $(MAKE) fastdebug \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
  $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
  $(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug images \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
  $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all docs images \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
  $(MAKE) ALT_BOOTDIR=/opt/java/jdk1.6.0 \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
  $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.7.0 \n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
# 'all' target intro
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
all:: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
	@$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build started: $(shell $(DATE) '+%y-%m-%d %H:%M')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
# Just in case anyone uses this old name, same as 'build'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
optimized: build
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
openjdk:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
	$(MAKE) OPENJDK=true all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
# Special debug rules (You may also want to set ALT_OUTPUTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
debug:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
	$(MAKE) VARIANT=DBG all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
fastdebug:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
	$(MAKE) VARIANT=DBG FASTDEBUG=true all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
# Rules to re-import VM and other JDK files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
import:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
	$(CD) java/redist; $(MAKE) clean all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
import_fastdebug:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
	$(MAKE) VARIANT=DBG FASTDEBUG=true import
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
import_product:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
	$(MAKE) VARIANT=OPT FASTDEBUG=false import
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
# Core.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
all build:: sanity-all post-sanity-all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
4917
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 4524
diff changeset
   243
SUBDIRS       = tools java javax sun com
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 4524
diff changeset
   244
SUBDIRS_tools = launchers
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 4524
diff changeset
   245
SUBDIRS_misc  = org sunw jpda mkdemo mksample
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 4524
diff changeset
   246
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 4524
diff changeset
   247
include $(BUILDDIR)/common/Subdirs.gmk
c98da2209f8c 6915413: Module build: building of specified jdk components instead of all
mchung
parents: 4524
diff changeset
   248
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
all build::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
	$(SUBDIRS-loop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
clean clobber::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
	$(RM) -r $(OUTPUTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
# Docs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
OTHERSUBDIRS = docs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
docs:: sanity-docs post-sanity-docs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
	$(OTHERSUBDIRS-loop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
# Release engineering targets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
include $(BUILDDIR)/common/Release.gmk
4524
697144bd8b04 6909572: Add a new target for building modules
mchung
parents: 2302
diff changeset
   266
include $(BUILDDIR)/common/Modules.gmk
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
# Cscope targets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
include $(BUILDDIR)/common/Cscope.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
# Sanity checks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
include $(BUILDDIR)/common/Sanity.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
$(OUTPUTDIR) $(TEMPDIR):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
	$(MKDIR) -p $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
# cleanup everything. If the workspace is not being built by the control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
# workspace, and if it is a Teamware workspace, then see if there are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
# any files which are not under SCCS control.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
clean clobber:: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
ifndef EXTERNALSANITYCONTROL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
	@if [ -d $(TOPDIR)/Codemgr_wsdata ]; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
	  $(ECHO) '\nPerforming workspace scan for remnant files.\n' \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
		'  Any files listed below are not under SCCS control in the workspace\n' \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
		'  and you should review them and possibly remove them manually:' ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
	  $(FIND) $(TOPDIR)/make $(TOPDIR)/src -type f | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
		$(SED) 's+SCCS/[ps]\.++' | $(SORT) | $(UNIQ) -c | $(NAWK) '$$1<2 {print $$2;}' ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
	  $(ECHO) 'End of workspace scan.' ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
# this should be the last rule in this file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
all::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
	@if [ -r $(WARNING_FILE) ]; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
	  $(CAT) $(WARNING_FILE) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
	@$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build finished: $(shell $(DATE) '+%y-%m-%d %H:%M')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
# Developer rule that links 32 and 64 bit builds on Solaris by creating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
#   softlinks in the 32bit outputdir to the 64bit outputdir.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
  ifeq ($(ARCH_FAMILY), sparc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    ARCH32 = sparc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    ARCH64 = sparcv9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    ARCH32 = i586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    ARCH64 = amd64
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
  OUTPUTDIR32      = $(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
  OUTPUTDIR64      = $(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
create_links:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
	@if [ -d $(OUTPUTDIR32) -a -d $(OUTPUTDIR64) ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
	    dirlist=`($(CD) $(OUTPUTDIR64); $(FIND) . -name $(ARCH64))`; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
	    for sd in $$dirlist ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
	      pdir=`$(DIRNAME) $$sd`; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
	      if [ -d $(OUTPUTDIR32)/$$pdir ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
	        echo "Creating link for $$sd"; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
	        (cd $(OUTPUTDIR32)/$$pdir; $(RM) $(ARCH64); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
	         $(LN) -s $(OUTPUTDIR64)/$$sd ); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
	      fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
	    done; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
	else \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
	    $(ECHO) "Build both 32 and 64 bit versions first"; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
	$(ECHO) "Rule $@ does not apply on $(PLATFORM)-$(ARCH)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
#
2302
5ccdc0e16a39 6824595: OpenJDK fix breaks product build for jdk7
tbell
parents: 2301
diff changeset
   339
# Binary Plug rules and macros
5ccdc0e16a39 6824595: OpenJDK fix breaks product build for jdk7
tbell
parents: 2301
diff changeset
   340
#
5ccdc0e16a39 6824595: OpenJDK fix breaks product build for jdk7
tbell
parents: 2301
diff changeset
   341
include $(BUILDDIR)/common/internal/BinaryPlugs.gmk
5ccdc0e16a39 6824595: OpenJDK fix breaks product build for jdk7
tbell
parents: 2301
diff changeset
   342
5ccdc0e16a39 6824595: OpenJDK fix breaks product build for jdk7
tbell
parents: 2301
diff changeset
   343
#
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
# Get top level sccs_get rule
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
include $(BUILDDIR)/common/Rules-SCCS.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
# JPRT rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
include jprt.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
# Phonies to avoid accidents.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
.PHONY: all build clean clobber optimized debug fastdebug create_links \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
	import import_product import_fastdebug import_debug
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356