make/windows/makefiles/generated.make

changeset 526
a294fd0c4b38
parent 435
a61af66fc99e
child 631
d1605aabd0a1
child 777
37f87013dfd8
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/make/windows/makefiles/generated.make	Wed Apr 09 14:22:48 2008 -0400
     1.3 @@ -0,0 +1,101 @@
     1.4 +#
     1.5 +# Copyright 2005-2007 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 +#
     1.8 +# This code is free software; you can redistribute it and/or modify it
     1.9 +# under the terms of the GNU General Public License version 2 only, as
    1.10 +# published by the Free Software Foundation.
    1.11 +#
    1.12 +# This code is distributed in the hope that it will be useful, but WITHOUT
    1.13 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.14 +# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.15 +# version 2 for more details (a copy is included in the LICENSE file that
    1.16 +# accompanied this code).
    1.17 +#
    1.18 +# You should have received a copy of the GNU General Public License version
    1.19 +# 2 along with this work; if not, write to the Free Software Foundation,
    1.20 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 +#
    1.22 +# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    1.23 +# CA 95054 USA or visit www.sun.com if you need additional information or
    1.24 +# have any questions.
    1.25 +#  
    1.26 +#
    1.27 +
    1.28 +!include ../local.make
    1.29 +!include $(WorkSpace)/make/windows/makefiles/makedeps.make
    1.30 +!include local.make
    1.31 +
    1.32 +# Pick up rules for building JVMTI (JSR-163)
    1.33 +JvmtiOutDir=jvmtifiles
    1.34 +!include $(WorkSpace)/make/windows/makefiles/jvmti.make
    1.35 +
    1.36 +# Pick up rules for building SA
    1.37 +!include $(WorkSpace)/make/windows/makefiles/sa.make
    1.38 +
    1.39 +!if ("$(Variant)" == "compiler2") || ("$(Variant)" == "tiered")
    1.40 +default:: includeDB.current Dependencies incls/ad_$(Platform_arch_model).cpp incls/dfa_$(Platform_arch_model).cpp $(JvmtiGeneratedFiles)
    1.41 +!else
    1.42 +default:: includeDB.current Dependencies $(JvmtiGeneratedFiles)
    1.43 +!endif
    1.44 +
    1.45 +# core plus serial gc
    1.46 +IncludeDBs_base=$(WorkSpace)/src/share/vm/includeDB_core \
    1.47 +           $(WorkSpace)/src/share/vm/includeDB_jvmti \
    1.48 +           $(WorkSpace)/src/share/vm/includeDB_gc \
    1.49 +           $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_serial
    1.50 +
    1.51 +# parallel gc
    1.52 +IncludeDBs_gc= $(WorkSpace)/src/share/vm/includeDB_gc_parallel \
    1.53 +           $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_parallelScavenge \
    1.54 +           $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_shared \
    1.55 +           $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_parNew \
    1.56 +           $(WorkSpace)/src/share/vm/gc_implementation/includeDB_gc_concurrentMarkSweep
    1.57 +
    1.58 +IncludeDBs_core=$(IncludeDBs_base) $(IncludeDBs_gc) \
    1.59 +                $(WorkSpace)/src/share/vm/includeDB_features
    1.60 +
    1.61 +!if "$(Variant)" == "core"
    1.62 +IncludeDBs=$(IncludeDBs_core)
    1.63 +!endif
    1.64 +
    1.65 +!if "$(Variant)" == "kernel"
    1.66 +IncludeDBs=$(IncludeDBs_base) $(WorkSpace)/src/share/vm/includeDB_compiler1
    1.67 +!endif
    1.68 +
    1.69 +!if "$(Variant)" == "compiler1"
    1.70 +IncludeDBs=$(IncludeDBs_core) $(WorkSpace)/src/share/vm/includeDB_compiler1
    1.71 +!endif
    1.72 +
    1.73 +
    1.74 +!if "$(Variant)" == "compiler2"
    1.75 +IncludeDBs=$(IncludeDBs_core) $(WorkSpace)/src/share/vm/includeDB_compiler2
    1.76 +!endif
    1.77 +
    1.78 +!if "$(Variant)" == "tiered"
    1.79 +IncludeDBs=$(IncludeDBs_core) $(WorkSpace)/src/share/vm/includeDB_compiler1 \
    1.80 +           $(WorkSpace)/src/share/vm/includeDB_compiler2
    1.81 +!endif
    1.82 +
    1.83 +# Note we don't generate a Visual C++ project file using MakeDeps for
    1.84 +# the batch build.
    1.85 +includeDB.current Dependencies: classes/MakeDeps.class $(IncludeDBs)
    1.86 +	cat $(IncludeDBs) > includeDB
    1.87 +	if exist incls rmdir /s /q incls
    1.88 +	mkdir incls
    1.89 +	$(RUN_JAVA) -Djava.class.path=classes MakeDeps WinGammaPlatform$(VcVersion) $(WorkSpace)/make/windows/platform_$(BUILDARCH) includeDB $(MakeDepsOptions)
    1.90 +	rm -f includeDB.current
    1.91 +	cp includeDB includeDB.current
    1.92 +
    1.93 +classes/MakeDeps.class: $(MakeDepsSources)
    1.94 +	if exist classes rmdir /s /q classes
    1.95 +	mkdir classes
    1.96 +	$(COMPILE_JAVAC) -classpath $(WorkSpace)\src\share\tools\MakeDeps -g -d classes $(MakeDepsSources)
    1.97 +
    1.98 +!if ("$(Variant)" == "compiler2") || ("$(Variant)" == "tiered")
    1.99 +
   1.100 +!include $(WorkSpace)/make/windows/makefiles/adlc.make
   1.101 +
   1.102 +!endif
   1.103 +
   1.104 +!include $(WorkSpace)/make/windows/makefiles/shared.make

mercurial