1 | # $Id: Makefile.kmk 33590 2010-10-29 08:55:09Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for VBoxBFE (a basic frontend which doesn't make use of Main).
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 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 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 | if !defined(VBOX_WITH_HARDENING) || "$(KBUILD_TARGET)" != "darwin" # No hardened VBoxBFE on darwin (.m).
|
---|
21 |
|
---|
22 | #
|
---|
23 | # Files from Main needed for building VBoxBFE
|
---|
24 | #
|
---|
25 | VBOXBFE_MAIN_CPP = MouseImpl.cpp
|
---|
26 | VBOXBFE_MAIN_H = MouseImpl.h ConsoleEvents.h
|
---|
27 |
|
---|
28 | #
|
---|
29 | # Targets.
|
---|
30 | #
|
---|
31 | ifdef VBOX_WITH_HARDENING
|
---|
32 | PROGRAMS += VBoxBFEHardened
|
---|
33 | DLLS += VBoxBFE
|
---|
34 | else
|
---|
35 | PROGRAMS += VBoxBFE
|
---|
36 | endif
|
---|
37 |
|
---|
38 |
|
---|
39 | #
|
---|
40 | # Hardened VBoxBFE.
|
---|
41 | #
|
---|
42 | VBoxBFEHardened_TEMPLATE = VBOXR3HARDENEDEXE
|
---|
43 | VBoxBFEHardened_SOURCES = VBoxBFEHardened.cpp
|
---|
44 | VBoxBFEHardened_NAME = VBoxBFE
|
---|
45 |
|
---|
46 |
|
---|
47 | #
|
---|
48 | # VBoxBFE
|
---|
49 | #
|
---|
50 | VBoxBFE_TEMPLATE := $(if $(VBOX_WITH_HARDENING),VBOXR3NP,VBOXR3NPEXE)
|
---|
51 | #ifdef VBOX_WITH_SECURELABEL
|
---|
52 | #VBoxBFE_DEFS += VBOX_SECURELABEL
|
---|
53 | #endif
|
---|
54 | VBoxBFE_DEFS += VBOXBFE_WITHOUT_COM
|
---|
55 | ifdef VBOX_WITH_LINUX_COMPILER_H
|
---|
56 | VBoxBFE_DEFS += VBOX_WITH_LINUX_COMPILER_H
|
---|
57 | endif
|
---|
58 | VBoxBFE_DEFS.freebsd = VBOXBFE_WITH_X11
|
---|
59 | VBoxBFE_DEFS.l4 = _GNU_SOURCE
|
---|
60 | VBoxBFE_DEFS.linux = _GNU_SOURCE VBOXBFE_WITH_X11
|
---|
61 | VBoxBFE_DEFS.solaris = VBOXBFE_WITH_X11
|
---|
62 | ifdef VBOX_WITH_CROSSBOW
|
---|
63 | VBoxBFE_DEFS.solaris += VBOX_WITH_CROSSBOW
|
---|
64 | endif
|
---|
65 | VBoxBFE_DEFS.win.x86 = _WIN32_WINNT=0x0500
|
---|
66 |
|
---|
67 | VBoxBFE_SOURCES = \
|
---|
68 | VBoxBFE.cpp \
|
---|
69 | VMMDevInterface.cpp \
|
---|
70 | DisplayImpl.cpp \
|
---|
71 | $(PATH_VBoxBFE)/MouseImpl.cpp \
|
---|
72 | KeyboardImpl.cpp \
|
---|
73 | StatusImpl.cpp \
|
---|
74 | MachineDebuggerImpl.cpp \
|
---|
75 | VMControl.cpp
|
---|
76 |
|
---|
77 | ifdef VBOX_WITH_HGCM
|
---|
78 | VBoxBFE_DEFS += VBOX_WITH_HGCM
|
---|
79 | VBoxBFE_SOURCES += \
|
---|
80 | HGCM.cpp \
|
---|
81 | HGCMThread.cpp \
|
---|
82 | HGCMObjects.cpp
|
---|
83 | endif
|
---|
84 |
|
---|
85 | VBoxBFE_SOURCES.darwin = \
|
---|
86 | VBoxBFEMain-darwin.m
|
---|
87 |
|
---|
88 | VBoxBFE_SOURCES.l4 = \
|
---|
89 | L4Console.cpp \
|
---|
90 | L4Framebuffer.cpp \
|
---|
91 | L4IDLInterface.cpp \
|
---|
92 | EmulCpp.cpp
|
---|
93 |
|
---|
94 | # SDL
|
---|
95 | ifneq ($(KBUILD_TARGET),l4)
|
---|
96 | VBoxBFE_SDKS += LIBSDL
|
---|
97 | VBoxBFE_DEFS += USE_SDL
|
---|
98 | VBoxBFE_SOURCES += \
|
---|
99 | SDLConsole.cpp \
|
---|
100 | SDLFramebuffer.cpp
|
---|
101 | endif
|
---|
102 |
|
---|
103 | # USB Support
|
---|
104 | if1of ($(KBUILD_TARGET), l4 win)
|
---|
105 | VBoxBFE_DEFS += VBOXBFE_WITH_USB
|
---|
106 | VBoxBFE_SOURCES += \
|
---|
107 | HostUSBImpl.cpp \
|
---|
108 | HostUSBDeviceImpl.cpp \
|
---|
109 | USBProxyService.cpp
|
---|
110 | VBoxBFE_SOURCES.l4 += \
|
---|
111 | USBProxyServiceLinux.cpp
|
---|
112 | VBoxBFE_SOURCES.linux += \
|
---|
113 | USBProxyServiceLinux.cpp
|
---|
114 | endif
|
---|
115 |
|
---|
116 | VBoxBFE_INCS = \
|
---|
117 | $(PATH_VBoxBFE) \
|
---|
118 | $(VBOX_PATH_SDK)/include \
|
---|
119 | $(PATH_ROOT)/src/VBox/Frontends/VBoxBFE
|
---|
120 | ifneq ($(filter-out win os2 l4 darwin,$(KBUILD_TARGET)),) # X11
|
---|
121 | VBoxBFE_INCS += \
|
---|
122 | $(VBOX_XCURSOR_INCS)
|
---|
123 | endif
|
---|
124 |
|
---|
125 | VBoxBFE_LIBS = \
|
---|
126 | $(LIB_RUNTIME) \
|
---|
127 | $(LIB_VMM)
|
---|
128 | ifneq ($(filter-out win os2 l4,$(KBUILD_TARGET)),)
|
---|
129 | VBoxBFE_LIBS += \
|
---|
130 | $(LIB_REM)
|
---|
131 | endif
|
---|
132 | ifneq ($(filter-out win os2 l4 darwin,$(KBUILD_TARGET)),) # X11
|
---|
133 | VBoxBFE_LIBS += \
|
---|
134 | $(VBOX_XCURSOR_LIBS) \
|
---|
135 | X11
|
---|
136 | VBoxBFE_LIBPATH += \
|
---|
137 | $(VBOX_LIBPATH_X11)
|
---|
138 | endif
|
---|
139 | ifndef VBOX_WITHOUT_COM
|
---|
140 | VBoxBFE_LIBS.win = \
|
---|
141 | $(PATH_TOOL_$(VBOX_VCC_TOOL)_ATLMFC_LIB)/atls.lib
|
---|
142 | endif
|
---|
143 | VBoxBFE_LIBS.l4 = \
|
---|
144 | $(L4_LIBDIR)/libl4con-idl.a \
|
---|
145 | $(L4_LIBDIR)/libconstream-server.a \
|
---|
146 | $(L4_LIBDIR)/libvboxctrl-server.a \
|
---|
147 | $(L4_LIBDIR)/libl4sys.a
|
---|
148 | VBoxBFE_LIBS.darwin = \
|
---|
149 | $(LIB_SDK_LIBSDL_SDLMAIN)
|
---|
150 | VBoxBFE_LDFLAGS.darwin = -framework Foundation -framework AppKit
|
---|
151 |
|
---|
152 | VBoxBFE_CXXFLAGS.l4 += -fno-rtti -nostdinc -Wno-non-virtual-dtor \
|
---|
153 | $(addprefix -I,$(VBOX_L4_GCC3_INCS) $(L4_INCDIR))
|
---|
154 | ## @todo why is it all this cool stuff here only for linux? If it's important, -fshort-wchar would apply to all GCC platforms.
|
---|
155 | VBoxBFE_DEFS.linux = \
|
---|
156 | NDEBUG TRIMMED
|
---|
157 | VBoxBFE_CXXFLAGS.linux = \
|
---|
158 | -fno-rtti -fno-exceptions -fshort-wchar -pthread
|
---|
159 |
|
---|
160 | VBoxBFE_CLEAN = $(PATH_VBoxBFE)/Ico64x01.h
|
---|
161 | VBoxBFE_SDLConsole.cpp_DEPS = $(PATH_VBoxBFE)/Ico64x01.h
|
---|
162 |
|
---|
163 | # Convert the pnm-file to a byte array.
|
---|
164 | $$(PATH_VBoxBFE)/Ico64x01.h: $(PATH_ROOT)/src/VBox/Frontends/VBoxBFE/ico64x01.pnm $(VBOX_BIN2C) | $$(dir $$@)
|
---|
165 | $(call MSG_TOOL,bin2c,VBoxBFE,$<,$@)
|
---|
166 | $(QUIET)$(VBOX_BIN2C) Ico64x01 $< $@
|
---|
167 |
|
---|
168 | VBoxBFE_DEPS += $(addprefix $(PATH_VBoxBFE)/,$(VBOXBFE_MAIN_CPP) $(VBOXBFE_MAIN_H))
|
---|
169 |
|
---|
170 | # Pattern rules for copying needed files from Main
|
---|
171 | $(addprefix $$(PATH_VBoxBFE)/,$(VBOXBFE_MAIN_CPP)): \
|
---|
172 | $$(PATH_VBoxBFE)/% : $(PATH_ROOT)/src/VBox/Main/% | $$(dir $$@)
|
---|
173 | $(call MSG_INST_FILE,$<,$@)
|
---|
174 | $(QUIET)$(CP_EXT) $< $@
|
---|
175 |
|
---|
176 | $(addprefix $$(PATH_VBoxBFE)/,$(VBOXBFE_MAIN_H)): \
|
---|
177 | $$(PATH_VBoxBFE)/% : $(PATH_ROOT)/src/VBox/Main/include/% | $$(dir $$@)
|
---|
178 | $(call MSG_INST_FILE,$<,$@)
|
---|
179 | $(QUIET)$(CP_EXT) $< $@
|
---|
180 |
|
---|
181 | OTHER_CLEAN += \
|
---|
182 | $(addprefix $(PATH_VBoxBFE)/,$(VBOXBFE_MAIN_CPP)) \
|
---|
183 | $(addprefix $(PATH_VBoxBFE)/,$(VBOXBFE_MAIN_H))
|
---|
184 |
|
---|
185 |
|
---|
186 | endif # !VBOX_WITH_HARDENING || !darwin
|
---|
187 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
188 |
|
---|