0N/A#
2105N/A# Copyright (c) 2003, 2011, Oracle and/or its affiliates. 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#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A# or visit www.oracle.com if you need additional information or have any
1472N/A# questions.
0N/A#
0N/A#
0N/A
0N/A# These are the commands used externally to compile and run.
3953N/A# The \ are used here for traditional Windows apps and " quoted to get
3953N/A# past the Unix-like shell:
0N/A!ifdef BootStrapDir
3953N/ARUN_JAVA="$(BootStrapDir)\bin\java"
3953N/ARUN_JAVAP="$(BootStrapDir)\bin\javap"
3953N/ARUN_JAVAH="$(BootStrapDir)\bin\javah"
3953N/ARUN_JAR="$(BootStrapDir)\bin\jar"
3953N/ACOMPILE_JAVAC="$(BootStrapDir)\bin\javac" $(BOOTSTRAP_JAVAC_FLAGS)
3953N/ACOMPILE_RMIC="$(BootStrapDir)\bin\rmic"
0N/ABOOT_JAVA_HOME=$(BootStrapDir)
0N/A!else
0N/ARUN_JAVA=java
0N/ARUN_JAVAP=javap
0N/ARUN_JAVAH=javah
0N/ARUN_JAR=jar
971N/ACOMPILE_JAVAC=javac $(BOOTSTRAP_JAVAC_FLAGS)
0N/ACOMPILE_RMIC=rmic
0N/ABOOT_JAVA_HOME=
0N/A!endif
0N/A
971N/A# Settings for javac
971N/ABOOT_SOURCE_LANGUAGE_VERSION=6
971N/ABOOT_TARGET_CLASS_VERSION=6
971N/AJAVAC_FLAGS=-g -encoding ascii
971N/ABOOTSTRAP_JAVAC_FLAGS=$(JAVAC_FLAGS) -source $(BOOT_SOURCE_LANGUAGE_VERSION) -target $(BOOT_TARGET_CLASS_VERSION)
971N/A
1934N/AProjectFile=jvm.vcproj
659N/A
0N/A!if "$(MSC_VER)" == "1200"
659N/A
0N/AVcVersion=VC6
2105N/AProjectFile=jvm.dsp
659N/A
659N/A!elseif "$(MSC_VER)" == "1400"
659N/A
659N/AVcVersion=VC8
659N/A
659N/A!elseif "$(MSC_VER)" == "1500"
659N/A
659N/AVcVersion=VC9
659N/A
1934N/A!elseif "$(MSC_VER)" == "1600"
1934N/A
2240N/AVcVersion=VC10
2240N/AProjectFile=jvm.vcxproj
1934N/A
0N/A!else
659N/A
0N/AVcVersion=VC7
659N/A
0N/A!endif