comparison make/windows/makefiles/rules.make @ 6603:0d8e265ba727

7181175: Enable builds on Windows with MinGW/MSYS Summary: This fix is the minimum number of Makefile changes to enable building HotSpot with MinGW/MSYS Reviewed-by: jcoomes, dcubed, tbell, ohair Contributed-by: volker.simonis@gmail.com
author dcubed
date Fri, 03 Aug 2012 18:34:28 -0700
parents 74e790c48cd4
children b9a9ed0f8eeb
comparison
equal deleted inserted replaced
6602:282abd0fd878 6603:0d8e265ba727
21 # questions. 21 # questions.
22 # 22 #
23 # 23 #
24 24
25 # These are the commands used externally to compile and run. 25 # These are the commands used externally to compile and run.
26 26 # The \ are used here for traditional Windows apps and " quoted to get
27 # past the Unix-like shell:
27 !ifdef BootStrapDir 28 !ifdef BootStrapDir
28 RUN_JAVA=$(BootStrapDir)\bin\java 29 RUN_JAVA="$(BootStrapDir)\bin\java"
29 RUN_JAVAP=$(BootStrapDir)\bin\javap 30 RUN_JAVAP="$(BootStrapDir)\bin\javap"
30 RUN_JAVAH=$(BootStrapDir)\bin\javah 31 RUN_JAVAH="$(BootStrapDir)\bin\javah"
31 RUN_JAR=$(BootStrapDir)\bin\jar 32 RUN_JAR="$(BootStrapDir)\bin\jar"
32 COMPILE_JAVAC=$(BootStrapDir)\bin\javac $(BOOTSTRAP_JAVAC_FLAGS) 33 COMPILE_JAVAC="$(BootStrapDir)\bin\javac" $(BOOTSTRAP_JAVAC_FLAGS)
33 COMPILE_RMIC=$(BootStrapDir)\bin\rmic 34 COMPILE_RMIC="$(BootStrapDir)\bin\rmic"
34 BOOT_JAVA_HOME=$(BootStrapDir) 35 BOOT_JAVA_HOME=$(BootStrapDir)
35 !else 36 !else
36 RUN_JAVA=java 37 RUN_JAVA=java
37 RUN_JAVAP=javap 38 RUN_JAVAP=javap
38 RUN_JAVAH=javah 39 RUN_JAVAH=javah