source: trunk/openjdk/make/hotspot-rules.gmk@ 332

Last change on this file since 332 was 278, checked in by dmik, 14 years ago

trunk: Merged in openjdk6 b22 from branches/vendor/oracle.

File size: 3.5 KB
Line 
1#
2# Copyright (c) 2001, 2010, 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#
25
26################################################################
27# HOTSPOT TARGETS
28################################################################
29
30# All the output from a hotspot build should be re-located to the
31# build output area.
32#
33HOTSPOT_OUTPUTDIR = $(HOTSPOT_DIR)/outputdir
34
35# HOTSPOT_EXPORT_PATH points to a dir that contains files
36# that are needed in an SDK build, in the same relative positions as
37# these files are in an SDK image.
38# The SDK java/redist/Makefile will copy files from HOTSPOT_EXPORT_PATH
39# into the SDK being built.
40# This is the export path supplied to the hotspot makefiles.
41#
42HOTSPOT_EXPORT_PATH = $(HOTSPOT_DIR)/import
43
44# Default targets
45HOTSPOT = hotspot-sanity hotspot-build
46
47hotspot:: $(HOTSPOT)
48
49# Hotspot clobber removes the output directory and exported files
50hotspot-clobber::
51 $(RM) -r $(HOTSPOT_OUTPUTDIR)
52 $(RM) -r $(HOTSPOT_EXPORT_PATH)
53
54hotspot-sanity::
55 @$(MKDIR) -p $(HOTSPOT_OUTPUTDIR)
56 @$(MKDIR) -p $(HOTSPOT_EXPORT_PATH)
57 @$(ECHO) "Hotspot Settings: \n" \
58 " HOTSPOT_BUILD_JOBS = $(HOTSPOT_BUILD_JOBS) \n" \
59 " HOTSPOT_OUTPUTDIR = $(HOTSPOT_OUTPUTDIR) \n" \
60 " HOTSPOT_EXPORT_PATH = $(HOTSPOT_EXPORT_PATH) \n" \
61 "\n" >> $(MESSAGE_FILE)
62
63#
64# Basic hotspot build and export of it's files
65#
66
67HOTSPOT_TARGET = all_product
68ifeq ($(DEBUG_NAME), debug)
69 HOTSPOT_TARGET = all_debug
70endif
71ifeq ($(DEBUG_NAME), fastdebug)
72 HOTSPOT_TARGET = all_fastdebug
73endif
74
75ifeq ($(ZERO_BUILD), true)
76 ifeq ($(SHARK_BUILD), true)
77 HOTSPOT_TARGET := $(HOTSPOT_TARGET)shark
78 else
79 HOTSPOT_TARGET := $(HOTSPOT_TARGET)zero
80 endif
81endif
82
83HOTSPOT_BUILD_ARGUMENTS += $(COMMON_BUILD_ARGUMENTS)
84HOTSPOT_BUILD_ARGUMENTS += ALT_OUTPUTDIR=$(HOTSPOT_OUTPUTDIR)
85HOTSPOT_BUILD_ARGUMENTS += ALT_EXPORT_PATH=$(HOTSPOT_EXPORT_PATH)
86
87# Why do these need to be passed in? Because of windows nmake? and MAKEFLAGS=?
88# Or is there something wrong with hotspot/make/Makefile?
89HOTSPOT_BUILD_ARGUMENTS += ALT_SLASH_JAVA=$(SLASH_JAVA)
90HOTSPOT_BUILD_ARGUMENTS += ALT_BOOTDIR=$(BOOTDIR)
91
92ifeq ($(BUILD_LANGTOOLS), true)
93 HOTSPOT_BUILD_ARGUMENTS += ALT_LANGTOOLS_DIST=$(ABS_LANGTOOLS_DIST)
94endif
95
96hotspot-build::
97 $(MKDIR) -p $(HOTSPOT_OUTPUTDIR)
98 $(MKDIR) -p $(HOTSPOT_EXPORT_PATH)
99 $(CD) $(HOTSPOT_TOPDIR)/make && \
100 $(MAKE) $(HOTSPOT_BUILD_ARGUMENTS) $(HOTSPOT_TARGET)
101
102#####################
103# .PHONY
104#####################
105.PHONY: hotspot-build hotspot-clobber hotspot-sanity
106
Note: See TracBrowser for help on using the repository browser.