comparison make/windows/makefiles/product.make @ 8098:1b0dc9f87e75

8006753: fix failed for JDK-8002415 White box testing API for HotSpot Summary: Modify WhiteBoxAPI to use interface classes from test/testlibrary instead, add ClassFileInstaller to resolve the boot class path issue Reviewed-by: ctornqvi, dsamersoff, coleenp, kvn
author mgerdin
date Tue, 19 Feb 2013 18:45:49 +0100
parents 74c359c4a9e5
children 6b748c9e1845
comparison
equal deleted inserted replaced
8069:1048edb5434a 8098:1b0dc9f87e75
30 # Allow the user to turn off precompiled headers from the command line. 30 # Allow the user to turn off precompiled headers from the command line.
31 !if "$(USE_PRECOMPILED_HEADER)" != "0" 31 !if "$(USE_PRECOMPILED_HEADER)" != "0"
32 BUILD_PCH_FILE=_build_pch_file.obj 32 BUILD_PCH_FILE=_build_pch_file.obj
33 !endif 33 !endif
34 34
35 default:: $(BUILD_PCH_FILE) $(AOUT) launcher checkAndBuildSA wb 35 default:: $(BUILD_PCH_FILE) $(AOUT) launcher checkAndBuildSA
36 36
37 !include ../local.make 37 !include ../local.make
38 !include compile.make 38 !include compile.make
39 39
40 CXX_FLAGS=$(CXX_FLAGS) $(PRODUCT_OPT_OPTION) 40 CXX_FLAGS=$(CXX_FLAGS) $(PRODUCT_OPT_OPTION)
80 !endif 80 !endif
81 81
82 !include $(WorkSpace)/make/windows/makefiles/shared.make 82 !include $(WorkSpace)/make/windows/makefiles/shared.make
83 !include $(WorkSpace)/make/windows/makefiles/sa.make 83 !include $(WorkSpace)/make/windows/makefiles/sa.make
84 !include $(WorkSpace)/make/windows/makefiles/launcher.make 84 !include $(WorkSpace)/make/windows/makefiles/launcher.make
85 !include $(WorkSpace)/make/windows/makefiles/wb.make