comparison make/windows/makefiles/debug.make @ 1985:cb2d0a362639

6981484: Update development launcher Summary: Add new development launcher called hotspot(.exe) Reviewed-by: coleenp
author sla
date Thu, 02 Dec 2010 05:45:54 -0800
parents c760f78e0a53
children aa6e219afbf1
comparison
equal deleted inserted replaced
1984:2968675b413e 1985:cb2d0a362639
24 24
25 HS_INTERNAL_NAME=jvm 25 HS_INTERNAL_NAME=jvm
26 HS_FNAME=$(HS_INTERNAL_NAME).dll 26 HS_FNAME=$(HS_INTERNAL_NAME).dll
27 AOUT=$(HS_FNAME) 27 AOUT=$(HS_FNAME)
28 SAWINDBG=sawindbg.dll 28 SAWINDBG=sawindbg.dll
29 LAUNCHER_NAME=hotspot.exe
29 GENERATED=../generated 30 GENERATED=../generated
30 31
31 # Allow the user to turn off precompiled headers from the command line. 32 # Allow the user to turn off precompiled headers from the command line.
32 !if "$(USE_PRECOMPILED_HEADER)" != "0" 33 !if "$(USE_PRECOMPILED_HEADER)" != "0"
33 BUILD_PCH_FILE=_build_pch_file.obj 34 BUILD_PCH_FILE=_build_pch_file.obj
34 !endif 35 !endif
35 36
36 default:: $(BUILD_PCH_FILE) $(AOUT) checkAndBuildSA 37 default:: $(BUILD_PCH_FILE) $(AOUT) $(LAUNCHER_NAME) checkAndBuildSA
37 38
38 !include ../local.make 39 !include ../local.make
39 !include compile.make 40 !include compile.make
40 41
41 CPP_FLAGS=$(CPP_FLAGS) $(DEBUG_OPT_OPTION) 42 CPP_FLAGS=$(CPP_FLAGS) $(DEBUG_OPT_OPTION)
60 $(MT) /manifest $@.manifest /outputresource:$@;#2 61 $(MT) /manifest $@.manifest /outputresource:$@;#2
61 !endif 62 !endif
62 63
63 !include $(WorkSpace)/make/windows/makefiles/shared.make 64 !include $(WorkSpace)/make/windows/makefiles/shared.make
64 !include $(WorkSpace)/make/windows/makefiles/sa.make 65 !include $(WorkSpace)/make/windows/makefiles/sa.make
66 !include $(WorkSpace)/make/windows/makefiles/launcher.make