make/windows/makefiles/rules.make

changeset 3990
0d8e265ba727
parent 2675
74e790c48cd4
child 4153
b9a9ed0f8eeb
equal deleted inserted replaced
3989:282abd0fd878 3990: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

mercurial