VirtualBox

source: vbox/trunk/src/VBox/Debugger/Makefile.kmk@ 38813

Last change on this file since 38813 was 38082, checked in by vboxsync, 13 years ago

*.kmk: Installation/staging adjustments (kBuild 0.2.0 preps).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1# $Id: Makefile.kmk 38082 2011-07-20 14:26:24Z vboxsync $
2## @file
3# Makefile for the VBox debugger.
4#
5
6#
7# Copyright (C) 2006-2010 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18SUB_DEPTH = ../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# The targets.
23#
24ifdef VBOX_WITH_DEBUGGER
25 LIBRARIES += Debugger
26 ifdef VBOX_WITH_TESTCASES
27 PROGRAMS += tstDBGCParser
28 endif
29endif # VBOX_WITH_DEBUGGER
30ifndef VBOX_OSE
31 INSTALLS.win.x86 += dbghelp
32endif
33
34
35#
36# Debugger library - linked into VBoxVMM.
37#
38Debugger_TEMPLATE = VBOXR3
39Debugger_DEFS = IN_VMM_R3 IN_DBG_R3 IN_DIS
40ifneq ($(KBUILD_TYPE),release)
41 Debugger_DEFS += VBOX_WITH_DEBUGGER_TCP_BY_DEFAULT
42endif
43Debugger_SOURCES = \
44 DBGConsole.cpp \
45 DBGCEval.cpp \
46 DBGCBuiltInSymbols.cpp \
47 DBGCCmdHlp.cpp \
48 DBGCCmdWorkers.cpp \
49 DBGCCommands.cpp \
50 DBGCEmulateCodeView.cpp \
51 DBGCOps.cpp \
52 DBGCGdbRemoteStub.cpp \
53 DBGCTcp.cpp
54
55#
56# The diggers plug-in.
57#
58DLLS += DBGCPlugInDiggers
59DBGCPlugInDiggers_TEMPLATE = VBOXR3
60DBGCPlugInDiggers_SOURCES = \
61 DBGPlugInDiggers.cpp \
62 DBGPlugInLinux.cpp \
63 DBGPlugInSolaris.cpp \
64 DBGPlugInWinNt.cpp \
65 DBGPlugInCommonELF.cpp
66DBGCPlugInDiggers_LIBS = \
67 $(LIB_VMM) \
68 $(LIB_REM) \
69 $(LIB_RUNTIME)
70
71
72#
73# The DBGC parser testcase.
74# This stubs all the VBoxVMM APIs.
75#
76tstDBGCParser_TEMPLATE = VBOXR3TSTEXE
77tstDBGCParser_DEFS = IN_VMM_R3
78tstDBGCParser_SOURCES = \
79 testcase/tstDBGCParser.cpp \
80 testcase/tstDBGCStubs.cpp
81tstDBGCParser_LIBS = \
82 $(Debugger_1_TARGET) \
83 $(LIB_RUNTIME)
84
85
86if defined(VBOX_WITH_QTGUI) && defined(VBOX_WITH_DEBUGGER_GUI)
87#
88# Debugger GUI component (Qt4).
89#
90USES += qt4
91DLLS += VBoxDbg
92VBoxDbg_TEMPLATE = VBOXQT4GUI
93VBoxDbg_DEFS = IN_DBG_R3 VBOXDBG_USE_QT4
94VBoxDbg_INCS = .
95VBoxDbg_QT_MODULES = Core Gui
96VBoxDbg_QT_MOCHDRS = \
97 VBoxDbgGui.h \
98 VBoxDbgConsole.h \
99 VBoxDbgStatsQt4.h
100VBoxDbg_SOURCES = \
101 VBoxDbg.cpp \
102 VBoxDbgGui.cpp \
103 VBoxDbgBase.cpp \
104 VBoxDbgConsole.cpp \
105 VBoxDbgStatsQt4.cpp
106VBoxDbg_LIBS = \
107 $(LIB_VMM)
108VBoxDbg_LDFLAGS.darwin = \
109 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxDbg.dylib
110
111 ifdef VBOX_WITH_TESTCASES
112#
113# The VBoxDbg testcase (Qt4).
114#
115PROGRAMS += tstVBoxDbg
116tstVBoxDbg_TEMPLATE = VBOXQT4GUIEXE
117tstVBoxDbg_USES = qt4
118tstVBoxDbg_QTTOOL = QT4
119tstVBoxDbg_QT_MODULES = Core Gui
120tstVBoxDbg_SOURCES = testcase/tstVBoxDbg.cpp
121tstVBoxDbg_LIBS = \
122 $(LIB_VMM) \
123 $(LIB_RUNTIME)
124 ifeq ($(KBUILD_TARGET),win)
125tstVBoxDbg_LIBS += \
126 $(PATH_STAGE_LIB)/VBoxDbg.lib
127 else
128tstVBoxDbg_LIBS += \
129 $(PATH_STAGE_BIN)/VBoxDbg$(VBOX_SUFF_DLL)
130 endif
131 endif # TESTCASES
132endif # Qt4
133
134
135#
136# Install the dbghelp.dll binary.
137#
138dbghelp_INST = bin/
139dbghelp_SOURCES.x86 = win32/dbghelp.dll
140dbghelp_SOURCES.amd64 = win64/dbghelp.dll
141
142
143include $(KBUILD_PATH)/subfooter.kmk
144
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette