VirtualBox

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

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

Biggest check-in ever. New source code headers for all (C) innotek files.

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