make/windows/makefiles/rules.make

Tue, 26 Jul 2016 11:15:09 +0800

author
fujie
date
Tue, 26 Jul 2016 11:15:09 +0800
changeset 38
f0e26f502a50
parent 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Instruction decoding support: add movn and movz in MIPS disassembler.

aoqi@0 1 #
aoqi@0 2 # Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 #
aoqi@0 5 # This code is free software; you can redistribute it and/or modify it
aoqi@0 6 # under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 # published by the Free Software Foundation.
aoqi@0 8 #
aoqi@0 9 # This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 # version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 # accompanied this code).
aoqi@0 14 #
aoqi@0 15 # You should have received a copy of the GNU General Public License version
aoqi@0 16 # 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 #
aoqi@0 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 # or visit www.oracle.com if you need additional information or have any
aoqi@0 21 # questions.
aoqi@0 22 #
aoqi@0 23 #
aoqi@0 24
aoqi@0 25 # These are the commands used externally to compile and run.
aoqi@0 26 # The \ are used here for traditional Windows apps and " quoted to get
aoqi@0 27 # past the Unix-like shell:
aoqi@0 28 !ifdef BootStrapDir
aoqi@0 29 RUN_JAVA="$(BootStrapDir)\bin\java"
aoqi@0 30 RUN_JAVAP="$(BootStrapDir)\bin\javap"
aoqi@0 31 RUN_JAVAH="$(BootStrapDir)\bin\javah"
aoqi@0 32 RUN_JAR="$(BootStrapDir)\bin\jar"
aoqi@0 33 COMPILE_JAVAC="$(BootStrapDir)\bin\javac" $(BOOTSTRAP_JAVAC_FLAGS)
aoqi@0 34 COMPILE_RMIC="$(BootStrapDir)\bin\rmic"
aoqi@0 35 BOOT_JAVA_HOME=$(BootStrapDir)
aoqi@0 36 !else
aoqi@0 37 RUN_JAVA=java
aoqi@0 38 RUN_JAVAP=javap
aoqi@0 39 RUN_JAVAH=javah
aoqi@0 40 RUN_JAR=jar
aoqi@0 41 COMPILE_JAVAC=javac $(BOOTSTRAP_JAVAC_FLAGS)
aoqi@0 42 COMPILE_RMIC=rmic
aoqi@0 43 BOOT_JAVA_HOME=
aoqi@0 44 !endif
aoqi@0 45
aoqi@0 46 # Settings for javac
aoqi@0 47 BOOT_SOURCE_LANGUAGE_VERSION=6
aoqi@0 48 BOOT_TARGET_CLASS_VERSION=6
aoqi@0 49 JAVAC_FLAGS=-g -encoding ascii
aoqi@0 50 BOOTSTRAP_JAVAC_FLAGS=$(JAVAC_FLAGS) -source $(BOOT_SOURCE_LANGUAGE_VERSION) -target $(BOOT_TARGET_CLASS_VERSION)
aoqi@0 51
aoqi@0 52 ProjectFile=jvm.vcproj
aoqi@0 53
aoqi@0 54 !if "$(MSC_VER)" == "1200"
aoqi@0 55
aoqi@0 56 VcVersion=VC6
aoqi@0 57 ProjectFile=jvm.dsp
aoqi@0 58
aoqi@0 59 !elseif "$(MSC_VER)" == "1400"
aoqi@0 60
aoqi@0 61 VcVersion=VC8
aoqi@0 62
aoqi@0 63 !elseif "$(MSC_VER)" == "1500"
aoqi@0 64
aoqi@0 65 VcVersion=VC9
aoqi@0 66
aoqi@0 67 !elseif "$(MSC_VER)" == "1600"
aoqi@0 68
aoqi@0 69 VcVersion=VC10
aoqi@0 70 ProjectFile=jvm.vcxproj
aoqi@0 71
aoqi@0 72 !elseif "$(MSC_VER)" == "1700"
aoqi@0 73 # This is VS2012, but it loads VS10 projects just fine (and will
aoqi@0 74 # upgrade them automatically to VS2012 format).
aoqi@0 75
aoqi@0 76 VcVersion=VC10
aoqi@0 77 ProjectFile=jvm.vcxproj
aoqi@0 78
aoqi@0 79 !else
aoqi@0 80
aoqi@0 81 VcVersion=VC7
aoqi@0 82
aoqi@0 83 !endif

mercurial