VirtualBox

source: vbox/trunk/include/Makefile.kmk@ 76718

Last change on this file since 76718 was 76718, checked in by vboxsync, 6 years ago

os2/VBoxSF,Vbgl: Promoted the fast host request wrappers to generic status. bugref:9172 [build fix]

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.0 KB
Line 
1# $Id: Makefile.kmk 76718 2019-01-09 02:33:35Z vboxsync $
2## @file
3# Some hacks to allow syntax and prerequisite include checking of headers.
4# This makefile doesn't and shouldn't build successfully.
5#
6
7#
8# Copyright (C) 2006-2019 Oracle Corporation
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18
19SUB_DEPTH = ..
20include $(KBUILD_PATH)/subheader.kmk
21
22LIBRARIES += SyntaxVBoxIncludeR3 SyntaxVBoxIncludeR0
23
24# Omit headers that are using C++ features and upsets gcc.
25VBOX_HDRS_CPP_FEATURES := \
26 VBox/vmm/hm.h \
27 VBox/vmm/hm_vmx.h \
28 VBox/HostServices/GuestControlSvc.h \
29 VBox/HostServices/DragAndDropSvc.h \
30 VBox/HostServices/Service.h \
31 VBox/GuestHost/GuestControl.h \
32 VBox/GuestHost/DragAndDrop.h \
33 VBox/dbus.h \
34 VBox/VBoxCrHgsmi.h \
35 VBox/VBoxGuestLibSharedFoldersInline.h \
36 VBox/VBoxPktDmp.h \
37 VBox/VBoxUhgsmi.h \
38 iprt/cpp/%
39
40# Omit headers that are C++ and ring-3.
41VBOX_HDRS_R3_CPP := \
42 VBox/dbggui.h \
43 VBox/settings.h \
44 VBox/com/Guid.h \
45 iprt/cpp/% \
46 VBox/com/% \
47 $(subst $(PATH_SUB_CURRENT)/,,$(wildcard $(PATH_SUB_CURRENT)/iprt/*_cpp.h))
48
49# Ring-3 only headers.
50VBOX_HDRS_R3_ONLY := \
51 VBox/vrdpapi.h \
52 VBox/vrdpusb.h \
53 VBox/VBoxHDD.h \
54 VBox/VBoxHDD-Plugin.h \
55 VBox/VBoxCrHgsmi.h \
56 VBox/VBoxUhgsmi.h \
57 VBox/VBoxNetCfg-win.h \
58 VBox/VBoxDrvCfg-win.h \
59 VBox/dbus.h \
60 $(if-expr "$(KBUILD_TARGET)" == "win",VBox/usblib.h,) \
61 VBox/usblib-win.h \
62 VBox/vd.h \
63 VBox/vd-cache-backend.h \
64 VBox/vd-ifs.h \
65 VBox/vd-ifs-internal.h \
66 VBox/vd-image-backend.h \
67 VBox/vd-plugin.h \
68 VBox/vd-filter-backend.h \
69 VBox/vddbg.h \
70 VBox/vmm/uvm.h \
71 VBox/vscsi.h \
72 VBox/ExtPack/% \
73 VBox/GuestHost/DragAndDrop.h \
74 VBox/HostServices/Service.h \
75 iprt/win/% \
76 iprt/alloca.h \
77 iprt/tcp.h \
78 iprt/localipc.h \
79 iprt/linux/sysfs.h \
80 iprt/socket.h \
81 iprt/udp.h \
82 iprt/linux/symvers.h
83
84# Ring-0 only headers.
85## @todo this is actually ring-0 driver headers, not agnostic ones.
86VBOX_HDRS_R0_ONLY := \
87 VBox/VBoxGuestLibSharedFolders.h
88
89# GCC only headers.
90VBOX_HDRS_GCC_ONLY := \
91 iprt/nocrt/fenv.h \
92 iprt/nocrt/math.h
93
94# Headers to omit all together.
95VBOX_HDRS_OMIT := \
96 VBox/HostServices/glext.h \
97 VBox/HostServices/glxext.h \
98 VBox/HostServices/wglext.h \
99 VBox/VBoxGL2D.h \
100 $(if-expr "$(KBUILD_TARGET)" != "solaris", \
101 VBox/usblib-solaris.h \
102 ,)\
103 VBox/VDEPlug.h \
104 VBox/VDEPlugSymDefs.h \
105 VBox/VBoxNetCmn-win.h \
106 $(if-expr "$(KBUILD_TARGET)" != "win", \
107 VBox/VBoxDrvCfg-win.h \
108 VBox/VBoxNetCfg-win.h \
109 VBox/usblib-win.h \
110 VBox/com/microatl.h \
111 ,$(VBOX_HDRS_GCC_ONLY)) \
112 \
113 VBox/dbus-calls.h \
114 VBox/VBoxKeyboard.h \
115 VBox/vmm/pdmpcidevint.h \
116 VBox/VBoxGuestLibSharedFoldersInline.h \
117 iprt/runtime-loader.h \
118 iprt/mangling.h \
119 $(subst $(PATH_SUB_CURRENT)/,,$(wildcard $(PATH_SUB_CURRENT)/iprt/asm*watcom*.h)) \
120 iprt/asn1-generator% \
121 iprt/win/% \
122 iprt/nt/% \
123 \
124 $(foreach os,$(filter-out $(KBUILD_TARGET),$(KBUILD_OSES)),iprt/$(os)/% VBox/$(os)/%) \
125 $(foreach arch,$(KBUILD_ARCHES),iprt/nocrt/$(arch)/%)
126
127# We omit a few headers which have platform specific issues or are templates.
128VBOX_HDRS_ALL := $(filter-out $(VBOX_HDRS_OMIT), \
129 $(subst $(PATH_SUB_CURRENT)/,,$(wildcard \
130 $(PATH_SUB_CURRENT)/VBox/*.h \
131 $(PATH_SUB_CURRENT)/VBox/*/*.h \
132 $(PATH_SUB_CURRENT)/iprt/*.h \
133 $(PATH_SUB_CURRENT)/iprt/*/*.h \
134)))
135
136# ring-3, ring-0 and raw-mode context specific exclusions.
137VBOX_HDRS_ALL_R3 := $(filter-out $(VBOX_HDRS_R0_ONLY), $(VBOX_HDRS_ALL))
138VBOX_HDRS_ALL_R3_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES) $(VBOX_HDRS_R3_CPP) $(VBOX_HDRS_R0_ONLY), $(VBOX_HDRS_ALL_R3))
139VBOX_HDRS_ALL_R0 := $(filter-out $(VBOX_HDRS_R3_CPP) $(VBOX_HDRS_R3_ONLY), $(VBOX_HDRS_ALL))
140VBOX_HDRS_ALL_R0_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES), $(VBOX_HDRS_ALL_R0))
141VBOX_HDRS_ALL_RC := $(filter-out \
142 VBox/VBoxGuestLib.h \
143 VBox/vmm/gvm.h \
144 iprt/thread.h \
145 iprt/mem.h \
146 iprt/memsafer.h \
147 iprt/alloc.h \
148 iprt/vector.h \
149 $(VBOX_HDRS_R3_CPP) \
150 $(VBOX_HDRS_R3_ONLY) \
151 $(VBOX_HDRS_R0_ONLY) \
152 , $(VBOX_HDRS_ALL))
153VBOX_HDRS_ALL_RC_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES), $(VBOX_HDRS_ALL_RC))
154#$(error $(subst $(SP),$(NLTAB),$(strip $(sort $(VBOX_HDRS_ALL_RC_C)))))
155
156SyntaxVBoxIncludeR3_TEMPLATE = VBOXMAINEXE
157SyntaxVBoxIncludeR3_DEFS = VBOX_WITH_HGCM
158SyntaxVBoxIncludeR3_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
159SyntaxVBoxIncludeR3_SOURCES := \
160 $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_R3_C)))) \
161 $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_R3))))
162SyntaxVBoxIncludeR3_CLEAN = $(SyntaxVBoxIncludeR3_SOURCES)
163#$(error $(subst $(SP),$(NLTAB),$(strip $(sort $(SyntaxVBoxIncludeR3_SOURCES)))))
164
165SyntaxVBoxIncludeR0_TEMPLATE = VBoxR0
166SyntaxVBoxIncludeR0_DEFS = VBOX_WITH_HGCM
167SyntaxVBoxIncludeR0_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
168SyntaxVBoxIncludeR0_SOURCES := \
169 $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_R0_C)))) \
170 $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_R0))))
171SyntaxVBoxIncludeR0_CLEAN = $(SyntaxVBoxIncludeR0_SOURCES)
172
173ifdef VBOX_WITH_RAW_MODE
174 LIBRARIES += SyntaxVBoxIncludeRC
175 SyntaxVBoxIncludeRC_TEMPLATE = VBoxRc
176 SyntaxVBoxIncludeRC_DEFS = VBOX_WITH_HGCM
177 SyntaxVBoxIncludeRC_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
178 SyntaxVBoxIncludeRC_SOURCES := \
179 $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_RC_C)))) \
180 $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_RC))))
181 SyntaxVBoxIncludeRC_CLEAN = $(SyntaxVBoxIncludeRC_SOURCES)
182endif
183
184
185# Headers that must only be included once.
186VBOX_HDRS_ONLY_ONCE := \
187 iprt/bldprog-strtab-template.cpp.h
188
189
190# Generate the files we compile.
191define def_hdr
192 $(eval functioname := $(translate $(basename $(hdr)),-./,___))
193
194 $$(PATH_OBJ)/include/c/$(basename $(hdr)).c: | $$$$(dir $$$$@)
195 $(QUIET)$$(APPEND) -t -n $$@ \
196 '#include <$(hdr)>' \
197 $(if-expr $(intersects $(hdr),$(VBOX_HDRS_ONLY_ONCE)),, '#include <$(hdr)>') \
198 'extern int $(functioname)_c(void);' \
199 'int $(functioname)_c(void) { return 0;}'
200
201 $$(PATH_OBJ)/include/cpp/$(basename $(hdr)).cpp: | $$$$(dir $$$$@)
202 $(QUIET)$$(APPEND) -t -n $$@ \
203 '#include <$(hdr)>' \
204 $(if-expr $(intersects $(hdr),$(VBOX_HDRS_ONLY_ONCE)),, '#include <$(hdr)>') \
205 'extern int $(functioname)_cpp(void);' \
206 'int $(functioname)_cpp(void) { return 0;}'
207
208endef
209
210$(foreach hdr,$(VBOX_HDRS_ALL), $(eval $(def_hdr)))
211
212# Tell kBuild to generate rules for making the directories for the generated files.
213VBOX_HDR_DIRS := $(sort $(dir $(VBOX_HDRS_ALL)))
214BLDDIRS += $(addprefix $(PATH_OBJ)/include/c/,$(VBOX_HDR_DIRS)) $(addprefix $(PATH_OBJ)/include/cpp/,$(VBOX_HDR_DIRS))
215
216
217include $(FILE_KBUILD_SUB_FOOTER)
218
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