generated.make revision 91
0N/A#
0N/A# Copyright 2005-2007 Sun Microsystems, Inc. All Rights Reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
0N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A# CA 95054 USA or visit www.sun.com if you need additional information or
0N/A# have any questions.
0N/A#
0N/A#
0N/A
0N/A!include ../local.make
91N/A!include $(WorkSpace)/make/windows/makefiles/makedeps.make
0N/A!include local.make
0N/A
0N/A# Pick up rules for building JVMTI (JSR-163)
0N/AJvmtiOutDir=jvmtifiles
91N/A!include $(WorkSpace)/make/windows/makefiles/jvmti.make
0N/A
0N/A# Pick up rules for building SA
91N/A!include $(WorkSpace)/make/windows/makefiles/sa.make
0N/A
0N/A!if ("$(Variant)" == "compiler2") || ("$(Variant)" == "tiered")
0N/Adefault:: includeDB.current Dependencies incls/ad_$(Platform_arch_model).cpp incls/dfa_$(Platform_arch_model).cpp $(JvmtiGeneratedFiles)
0N/A!else
0N/Adefault:: includeDB.current Dependencies $(JvmtiGeneratedFiles)
0N/A!endif
0N/A
0N/A# core plus serial gc
0N/AIncludeDBs_base=$(WorkSpace)/src/share/vm/includeDB_core \
0N/A $(WorkSpace)/src/share/vm/includeDB_jvmti \
0N/A $(WorkSpace)/src/share/vm/includeDB_gc \
0N/A $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_serial
0N/A
0N/A# parallel gc
0N/AIncludeDBs_gc= $(WorkSpace)/src/share/vm/includeDB_gc_parallel \
0N/A $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_parallelScavenge \
0N/A $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_shared \
0N/A $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_parNew \
0N/A $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_concurrentMarkSweep
0N/A
0N/AIncludeDBs_core=$(IncludeDBs_base) $(IncludeDBs_gc) \
0N/A $(WorkSpace)/src/share/vm/includeDB_features
0N/A
0N/A!if "$(Variant)" == "core"
0N/AIncludeDBs=$(IncludeDBs_core)
0N/A!endif
0N/A
0N/A!if "$(Variant)" == "kernel"
0N/AIncludeDBs=$(IncludeDBs_base) $(WorkSpace)/src/share/vm/includeDB_compiler1
0N/A!endif
0N/A
0N/A!if "$(Variant)" == "compiler1"
0N/AIncludeDBs=$(IncludeDBs_core) $(WorkSpace)/src/share/vm/includeDB_compiler1
0N/A!endif
0N/A
0N/A
0N/A!if "$(Variant)" == "compiler2"
0N/AIncludeDBs=$(IncludeDBs_core) $(WorkSpace)/src/share/vm/includeDB_compiler2
0N/A!endif
0N/A
0N/A!if "$(Variant)" == "tiered"
0N/AIncludeDBs=$(IncludeDBs_core) $(WorkSpace)/src/share/vm/includeDB_compiler1 \
0N/A $(WorkSpace)/src/share/vm/includeDB_compiler2
0N/A!endif
0N/A
0N/A# Note we don't generate a Visual C++ project file using MakeDeps for
0N/A# the batch build.
0N/AincludeDB.current Dependencies: classes/MakeDeps.class $(IncludeDBs)
0N/A cat $(IncludeDBs) > includeDB
0N/A if exist incls rmdir /s /q incls
0N/A mkdir incls
91N/A $(RUN_JAVA) -Djava.class.path=classes MakeDeps WinGammaPlatform$(VcVersion) $(WorkSpace)/make/windows/platform_$(BUILDARCH) includeDB $(MakeDepsOptions)
0N/A rm -f includeDB.current
0N/A cp includeDB includeDB.current
0N/A
0N/Aclasses/MakeDeps.class: $(MakeDepsSources)
0N/A if exist classes rmdir /s /q classes
0N/A mkdir classes
0N/A $(COMPILE_JAVAC) -classpath $(WorkSpace)\src\share\tools\MakeDeps -g -d classes $(MakeDepsSources)
0N/A
0N/A!if ("$(Variant)" == "compiler2") || ("$(Variant)" == "tiered")
0N/A
91N/A!include $(WorkSpace)/make/windows/makefiles/adlc.make
0N/A
0N/A!endif
0N/A
91N/A!include $(WorkSpace)/make/windows/makefiles/shared.make