VirtualBox

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

Last change on this file since 5669 was 5669, checked in by vboxsync, 17 years ago

Split out the codeview/windbg commands.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.0 KB
Line 
1# $Id: Makefile.kmk 5669 2007-11-11 05:05:02Z vboxsync $
2## @file
3# Makefile for the VBox debugger.
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14# distribution. VirtualBox OSE is distributed in the hope that it will
15# be useful, but WITHOUT ANY WARRANTY of any kind.
16
17DEPTH = ../../..
18include $(PATH_KBUILD)/header.kmk
19
20LIBRARIES = Debugger
21ifdef VBOX_WITH_DEBUGGER_GUI
22DLLS = VBoxDbg
23PROGRAMS = tstVBoxDbg
24endif
25
26ifndef VBOX_OSE
27INSTALLS.win.x86 = dbghelp
28endif
29
30
31#
32# Debugger library
33#
34Debugger_TEMPLATE = VBOXR3
35Debugger_DEFS = IN_VMM_R3 IN_PDM_R3 IN_CFGM_R3 IN_IOM_R3 IN_SUP_R3 IN_VM_R3 IN_RT_R3 IN_CPUM_R3 IN_SELM_R3 IN_PGM_R3 IN_TRPM_R3 IN_MM_R3 IN_DBG_R3 IN_DBGF_R3 IN_DIS_R3
36Debugger_SOURCES = \
37 DBGConsole.cpp \
38 DBGCEmulateCodeView.cpp \
39 DBGCTcp.cpp
40
41#
42# The testcase.
43#
44tstVBoxDbg_TEMPLATE = VBOXQTGUIEXE
45tstVBoxDbg_SOURCES = testcase/tstVBoxDbg.cpp
46tstVBoxDbg_LIBS = \
47 $(LIB_VMM) \
48 $(LIB_RUNTIME)
49ifeq ($(BUILD_TARGET),win)
50tstVBoxDbg_LIBS += \
51 $(PATH_LIB)/VBoxDbg.lib
52else
53tstVBoxDbg_LIBS += \
54 $(PATH_BIN)/VBoxDbg$(VBOX_SUFF_DLL)
55endif
56
57
58#
59# Debugger GUI component.
60#
61VBoxDbg_TEMPLATE = VBOXQTGUI
62VBoxDbg_DEFS = IN_DBG_R3
63VBoxDbg_CXXFLAGS.linux = $(TEMPLATE_VBOXQTGUI_CXXFLAGS.linux) -O2
64VBoxDbg_CXXFLAGS.win = -wd4244
65VBoxDbg_INCS = \
66 . \
67 $(PATH_VBoxDbg)/ui \
68 $(PATH_VBoxDbg)/moc \
69 $(PATH_VBoxDbg)/include
70
71# QDesigner UI sources
72VBoxDbg_QT_UISRCS =
73
74# Headers containing definitions of classes that use the Q_OBJECT macro
75VBoxDbg_QT_MOCHDRS = \
76 VBoxDbgConsole.h \
77 VBoxDbgStats.h \
78 VBoxDbgGui.h
79
80# UI headers (ui.h) containing local definitions of classes that use the Q_OBJECT macro
81VBoxDbg_QT_MOCUIHDRS =
82
83VBoxDbg_GENSRCS = \
84 $(foreach moc,$(notdir $(basename $(VBoxDbg_QT_MOCHDRS))), $(PATH_VBoxDbg)/moc/moc_$(moc).cpp) \
85 $(foreach ui,$(notdir $(basename $(VBoxDbg_QT_UISRCS))), $(PATH_VBoxDbg)/ui/$(ui).cpp $(PATH_VBoxDbg)/moc/moc_$(ui).cpp)
86
87VBoxDbg_GENHDRS = \
88 $(foreach mocui,$(basename $(VBoxDbg_QT_MOCUIHDRS)), $(PATH_VBoxDbg)/moc/$(mocui).moc) \
89 $(foreach moc,$(basename $(VBoxDbg_QT_MOCSRCS)), $(PATH_VBoxDbg)/moc/$(moc).moc) \
90 $(foreach ui,$(basename $(VBoxDbg_QT_UISRCS)), $(PATH_VBoxDbg)/$(ui).h)
91
92VBoxDbg_SOURCES = \
93 $(VBoxDbg_GENSRCS) \
94 VBoxDbg.cpp \
95 VBoxDbgGui.cpp \
96 VBoxDbgBase.cpp \
97 VBoxDbgConsole.cpp \
98 VBoxDbgStats.cpp \
99 DBGConsole.cpp \
100 DBGCEmulateCodeView.cpp
101
102VBoxDbg_LIBS = $(LIB_VMM)
103
104# generated files we need to clean manually
105VBoxDbg_CLEAN += \
106 $(VBoxDbg_GENSRCS) \
107 $(VBoxDbg_GENHDRS)
108
109
110#
111# Install the dbghelp.dll binary.
112#
113dbghelp_INST = bin/
114dbghelp_SOURCES.x86 = win32/dbghelp.dll
115dbghelp_SOURCES.amd64 = win64/dbghelp.dll
116
117
118include $(PATH_KBUILD)/footer.kmk
119
120
121#
122# Source file generation rules
123#
124
125## Generate a rule to create a MOC source file from a header containing
126# classes that use the Q_OBJECT macro.
127# @param $mochdr the header file with Q_OBJECT
128define def_qt_gen_src_moc
129$(eval mocsrc := $(PATH_$(target))/moc/moc_$(notdir $(basename $(mochdr))).cpp)
130$$(mocsrc): $(mochdr)
131 $(call MSG_TOOL,moc,$(target),$(mocsrc),$(mochdr))
132 $(QUIET)$(MKDIR) -p $(basename $(mocsrc))
133 $(QUIET)$(VBOX_MOC) $(mochdr) -o $(mocsrc)
134
135endef
136
137## Generate a rule to create a MOC include file from a source containing
138# local classes that use the Q_OBJECT macro. This include is then included
139# by that source, so it must be generated before the source gets compiled.
140# @param $mocsrc the source file with Q_OBJECT
141define def_qt_gen_inc_moc
142$(eval mocobj := $(PATH_$(target)_$(mocsrc))/$(notdir $(basename $(mocsrc)))$(VBOX_SUFF_OBJ))
143$(eval mocinc := $(PATH_$(target))/moc/$(notdir $(basename $(mocsrc))).moc)
144$$(mocobj): $(mocinc)
145$$(mocinc): $(mocsrc)
146 $(call MSG_TOOL,moc,$(target),$(mocsrc),$(mocinc))
147 $(QUIET)$(MKDIR) -p $(basename $(mocinc))
148 $(QUIET)$(VBOX_MOC) -i $(mocsrc) -o $(mocinc)
149
150endef
151
152## Generate a rule to create a MOC include file from a UI header (ui.h) containing
153# local classes that use the Q_OBJECT macro. This include is then included
154# by that header, so it must be generated before the UI source gets compiled.
155# @param $mocuihdr the UI header file with Q_OBJECT
156define def_qt_gen_inc_mocuihdr
157$(eval uisrc := $(PATH_$(target))/ui/$(notdir $(basename $(basename $(mocuihdr)))).cpp)
158$(eval uiobj := $(PATH_$(target)_$(uisrc))/$(notdir $(basename $(uisrc)))$(VBOX_SUFF_OBJ))
159$(eval mocuiinc := $(PATH_$(target))/moc/$(notdir $(basename $(mocuihdr))).moc)
160$$(uisrc): $(mocuiinc)
161$$(mocuiinc): $(mocuihdr)
162 $(call MSG_TOOL,moc,$(target),$(mocuihdr),$(mocuiinc))
163 $(QUIET)$(MKDIR) -p $(basename $(mocuiinc))
164 $(QUIET)$(VBOX_MOC) -i $(mocuihdr) -o $(mocuiinc)
165
166endef
167
168define def_qt_gen_src_ui
169$(eval uisrc := $(PATH_$(target))/ui/$(notdir $(basename $(uifile))).cpp)
170$(eval uihdr := $(PATH_$(target))/ui/$(notdir $(basename $(uifile))).h)
171$(eval mocsrc := $(PATH_$(target))/moc/moc_$(notdir $(basename $(uifile))).cpp)
172
173$$(uihdr): $(uifile) | $(call DIRDEP,$(dir $(uihdr)))
174 $(call MSG_TOOL,uic,$(target),$(uifile),$(uihdr))
175 $(QUIET)$(VBOX_UIC) $(uifile) -o $(uihdr)
176
177$$(uisrc): $(uihdr) $(uifile) $(wildcard $(uifile).h) | $(call DIRDEP,$(dir $(uisrc)))
178 $(call MSG_TOOL,uic,$(target),$(uihdr),$(uisrc))
179 $(QUIET)$(VBOX_UIC) $(uifile) -i $(uihdr) -o $(uisrc)
180
181$$(mocsrc): $(uihdr) | $(call DIRDEP,$(dir $(mocsrc)))
182 $(call MSG_TOOL,uic,$(target),$(uihdr),$(mocsrc))
183 $(QUIET)$(VBOX_MOC) $(uihdr) -o $(mocsrc)
184
185endef
186
187## Generate rules for generating the Qt source for a target.
188# @param $target Target name.
189define def_qt_gen_src
190# moc srcs from hdrs with Q_OBJECT
191$(foreach mochdr,$($(target)_QT_MOCHDRS),$(eval $(def_qt_gen_src_moc)))
192# moc includes from srcs with Q_OBJECT
193$(foreach mocsrc,$($(target)_QT_MOCSRCS),$(eval $(def_qt_gen_inc_moc)))
194# moc includes from UI headers with Q_OBJECT
195$(foreach mocuihdr,$($(target)_QT_MOCUIHDRS),$(eval $(def_qt_gen_inc_mocuihdr)))
196# ui
197$(foreach uifile,$($(target)_QT_UISRCS) ,$(eval $(def_qt_gen_src_ui)))
198# dirs
199$(call DIRDEP,$(PATH_$(target))/ui/) $(call DIRDEP,$(PATH_$(target))/moc/):
200 $(call MSG_MKDIR,$$@)
201 $(QUIET)$(MKDIR) -p $$@
202
203endef
204
205# Generate Qt sources.
206$(foreach target,VBoxDbg,$(eval $(def_qt_gen_src)))
207
208
209$(call DIRDEP,$(PATH_VBoxDbg)/include/):
210 $(call MSG_MKDIR,$@)
211 $(QUIET)$(MKDIR) -p $@
212
213
214#
215# Translation stuff
216#
217
218VBoxDbg_TRANSLATIONS = \
219 nls/VBoxDbg_de.ts
220
221updatenls:
222 $(VBOX_LUPDATE) $(VBoxDbg_SOURCES) $(VBoxDbg_QT_MOCHDRS) $(VBoxDbg_GENHDRS) -ts $(VBoxDbg_TRANSLATIONS)
223
224
225#
226# Hand made dependencies go here
227#
228$(PATH_VBoxDbg)/gen/ui/VBoxNewVMWzd$(VBOX_SUFF_OBJ): $(PATH_VBoxDbg)/ui/VBoxNewVMWzd.h $(PATH_VBoxDbg)/ui/VBoxDiskImageMgrDlg.h
229$(PATH_VBoxDbg)/gen/ui/VBoxDiskImageMgrDlg$(VBOX_SUFF_OBJ): ui/VBoxDiskImageMgrDlg.ui $(PATH_VBoxDbg)/ui/VBoxNewHDWzd.h
230$(PATH_VBoxDbg)/gen/ui/VBoxCloseVMDlg$(VBOX_SUFF_OBJ): $(PATH_VBoxDbg)/ui/VBoxCloseVMDlg.h
231
232
233test:
234 echo $(VBoxDbg_GENSRCS) | sed -e "s/ /\n/g"
235
236testwrappers: $(WRAPPERSFILE)
237
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