VirtualBox

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

Last change on this file since 64739 was 64373, checked in by vboxsync, 8 years ago

PDM,Devices: Support for multiple PCI devices/function in a single PDM device.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
1# $Id: Makefile.kmk 64373 2016-10-23 19:03:39Z 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-2016 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
19DEPTH = ..
20include $(KBUILD_PATH)/header.kmk
21
22LIBRARIES = SyntaxVBoxIncludeR3 SyntaxVBoxIncludeR0 SyntaxVBoxIncludeRC
23
24# Omit headers that are using C++ features and upsets gcc.
25cpp_features_hdrs := \
26 VBox/vmm/hm.h \
27 VBox/vmm/hm_vmx.h \
28 VBox/HostServices/GuestControlSvc.h \
29 VBox/VBoxCrHgsmi.h \
30 VBox/VBoxUhgsmi.h
31
32# Omit headers that are C++ and ring-3.
33r3_cpp_hdrs := \
34 VBox/dbggui.h \
35 VBox/settings.h \
36 VBox/com/Guid.h \
37 VBox/HostServices/GuestPropertySvc.h \
38 $(wildcard iprt/*_cpp.h iprt/cpp/*.h VBox/com/*.h )
39
40# Ring-3 only headers.
41r3_only_hdrs := \
42 VBox/vrdpapi.h \
43 VBox/vrdpusb.h \
44 VBox/VBoxHDD.h \
45 VBox/VBoxHDD-Plugin.h \
46 VBox/VBoxCrHgsmi.h \
47 VBox/VBoxUhgsmi.h \
48 VBox/dbus.h \
49 VBox/vd.h \
50 VBox/vd-plugin.h \
51 VBox/vd-cache-plugin.h \
52 VBox/vmm/uvm.h \
53 VBox/vscsi.h \
54 $(wildcard VBox/ExtPack/*.h ) \
55 iprt/alloca.h \
56 iprt/tcp.h \
57 iprt/localipc.h \
58 iprt/linux/sysfs.h \
59 iprt/socket.h
60
61# We omit a few headers which have platform specific issues or are templates.
62hdrs := $(filter-out \
63 VBox/HostServices/glext.h \
64 VBox/HostServices/glxext.h \
65 VBox/HostServices/wglext.h \
66 VBox/VBoxGuest16.h \
67 VBox/VBoxGL2D.h \
68 VBox/WinNetConfig.h \
69 VBox/usblib-win.h \
70 VBox/usblib-solaris.h \
71 VBox/VDEPlug.h \
72 $(if-expr "$(KBUILD_TARGET)" != "win", \
73 VBox/VBoxDrvCfg-win.h \
74 VBox/VBoxNetCfg-win.h \
75 ,) \
76 \
77 VBox/dbus-calls.h \
78 VBox/VDEPlugSymDefs.h \
79 VBox/VBoxKeyboard.h \
80 VBox/vmm/pdmpcidevint.h \
81 iprt/runtime-loader.h \
82 iprt/mangling.h \
83 \
84 $(foreach os,$(filter-out $(KBUILD_TARGET),$(KBUILD_OSES)),iprt/$(os)/% VBox/$(os)/%) \
85 $(xforeach arch,$(KBUILD_ARCHES),iprt/nocrt/$(arch)/%) \
86 , $(wildcard VBox/*.h VBox/*/*.h iprt/*.h iprt/*/*.h))
87
88# ring-3, ring-0 and raw-mode context specific exclusions.
89hdrs.r3 := $(filter-out , $(hdrs))
90hdrs-c.r3 := $(filter-out $(cpp_features_hdrs) $(r3_cpp_hdrs), $(hdrs.r3))
91hdrs.r0 := $(filter-out $(r3_cpp_hdrs) $(r3_only_hdrs), $(hdrs))
92hdrs-c.r0 := $(filter-out $(cpp_features_hdrs), $(hdrs.r0))
93hdrs.rc := $(filter-out \
94 VBox/VBoxGuestLib.h \
95 VBox/vmm/gvm.h \
96 iprt/thread.h \
97 iprt/mem.h \
98 iprt/memsafer.h \
99 iprt/alloc.h \
100 $(r3_cpp_hdrs) \
101 $(r3_only_hdrs) \
102 , $(hdrs))
103hdrs-c.rc := $(filter-out $(cpp_features_hdrs), $(hdrs.rc))
104
105SyntaxVBoxIncludeR3_TEMPLATE = VBOXMAINEXE
106SyntaxVBoxIncludeR3_DEFS = VBOX_WITH_HGCM
107SyntaxVBoxIncludeR3_CDEFS = VBOX_WITHOUT_UNNAMED_UNIONS
108SyntaxVBoxIncludeR3_SOURCES := \
109 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs-c.r3)))) \
110 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.r3))))
111
112SyntaxVBoxIncludeR0_TEMPLATE = VBoxR0
113SyntaxVBoxIncludeR0_DEFS = VBOX_WITH_HGCM
114SyntaxVBoxIncludeR0_CDEFS = VBOX_WITHOUT_UNNAMED_UNIONS
115SyntaxVBoxIncludeR0_SOURCES := \
116 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs-c.r0)))) \
117 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.r0))))
118
119SyntaxVBoxIncludeRC_TEMPLATE = VBoxRc
120SyntaxVBoxIncludeRC_DEFS = VBOX_WITH_HGCM
121SyntaxVBoxIncludeRC_CDEFS = VBOX_WITHOUT_UNNAMED_UNIONS
122SyntaxVBoxIncludeRC_SOURCES := \
123 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs-c.rc)))) \
124 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.rc))))
125
126
127# Comment out the next line to simplify header correction.
128VBOX_ROOT_INCLUDE_MAKEFILE = $(PATH_ROOT)/include/Makefile.kmk
129
130include $(FILE_KBUILD_FOOTER)
131
132
133define def_hdr
134$(eval flatname := $(subst /,_,$(basename $(hdr))))
135$$(PATH_TARGET)/$(flatname)-cpp.cpp: $(VBOX_ROOT_INCLUDE_MAKEFILE) | $$(PATH_TARGET)/
136 $(QUIET)$$(APPEND) -t -n $$@ '#include <$(hdr)>' 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
137
138$$(PATH_TARGET)/$(flatname)-c.c: $(VBOX_ROOT_INCLUDE_MAKEFILE) | $$(PATH_TARGET)/
139 $(QUIET)$$(APPEND) -t -n $$@ '#include <$(hdr)>' 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
140
141$(subst .h,.o,$(notdir $(hdr)))::
142if1of ($(hdr), $(r3_cpp_hdrs) $(cpp_features_hdrs))
143 $$(MAKE) -f $(MAKEFILE) $(flatname)-cpp.o
144else
145 $$(MAKE) -f $(MAKEFILE) $(flatname)-c.o $(flatname)-cpp.o
146endif
147
148endef
149
150$(foreach hdr,$(hdrs), $(eval $(def_hdr)))
151
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