hotspot/make/windows/makefiles/rules.make
changeset 13474 ebc4c657841a
parent 8860 98a7ff20acf0
child 13963 e5b53c306fb5
equal deleted inserted replaced
13473:9bbabe271025 13474:ebc4c657841a
    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