comparison make/bsd/makefiles/vm.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 3d7ea1dbe0de
comparison
equal deleted inserted replaced
4956:4ab89de75552 5915:2d503de963b3
1 # 1 #
2 # Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1999, 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.
333 include $(MAKEFILES_DIR)/jsig.make 333 include $(MAKEFILES_DIR)/jsig.make
334 334
335 # Serviceability agent 335 # Serviceability agent
336 include $(MAKEFILES_DIR)/saproc.make 336 include $(MAKEFILES_DIR)/saproc.make
337 337
338 # Whitebox testing API
339 include $(MAKEFILES_DIR)/wb.make
340
338 #---------------------------------------------------------------------- 341 #----------------------------------------------------------------------
339 342
340 ifeq ($(OS_VENDOR), Darwin) 343 ifeq ($(OS_VENDOR), Darwin)
341 $(LIBJVM).dSYM: $(LIBJVM) 344 $(LIBJVM).dSYM: $(LIBJVM)
342 dsymutil $(LIBJVM) 345 dsymutil $(LIBJVM)
343 346
344 # no libjvm_db for macosx 347 # no libjvm_db for macosx
345 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(BUILDLIBSAPROC) dtraceCheck $(LIBJVM).dSYM 348 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(BUILDLIBSAPROC) dtraceCheck $(LIBJVM).dSYM $(WB_JAR)
346 echo "Doing vm.make build:" 349 echo "Doing vm.make build:"
347 else 350 else
348 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(BUILDLIBSAPROC) 351 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(BUILDLIBSAPROC) $(WB_JAR)
349 endif 352 endif
350 353
351 install: install_jvm install_jsig install_saproc 354 install: install_jvm install_jsig install_saproc
352 355
353 .PHONY: default build install install_jvm 356 .PHONY: default build install install_jvm