comparison make/windows/makefiles/product.make @ 5915:2d503de963b3

7148152: Add whitebox testing API to HotSpot Summary: Add an internal testing API to HotSpot to enable more targeted testing of vm functionality Reviewed-by: phh, dholmes
author mgerdin
date Thu, 23 Feb 2012 14:58:35 +0100
parents 719f7007c8e8
children 74c359c4a9e5
comparison
equal deleted inserted replaced
4956:4ab89de75552 5915:2d503de963b3
1 # 1 #
2 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 5 # This code is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 only, as 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
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 35 default:: $(BUILD_PCH_FILE) $(AOUT) launcher checkAndBuildSA wb
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)
74 !endif 74 !endif
75 75
76 !include $(WorkSpace)/make/windows/makefiles/shared.make 76 !include $(WorkSpace)/make/windows/makefiles/shared.make
77 !include $(WorkSpace)/make/windows/makefiles/sa.make 77 !include $(WorkSpace)/make/windows/makefiles/sa.make
78 !include $(WorkSpace)/make/windows/makefiles/launcher.make 78 !include $(WorkSpace)/make/windows/makefiles/launcher.make
79 !include $(WorkSpace)/make/windows/makefiles/wb.make