VirtualBox

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

Last change on this file since 30037 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1# $Id: Makefile.kmk 28800 2010-04-27 08:22:32Z 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-2007 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
24cpp_hdrs := \
25 VBox/dbggui.h \
26 VBox/settings.h \
27 $(wildcard iprt/*_cpp.h iprt/cpp/*.h )
28
29r3_only_hdrs := \
30 VBox/vrdpapi.h \
31 VBox/vrdpusb.h \
32 VBox/VBoxHDD.h \
33 VBox/VBoxHDD-Plugin.h \
34 VBox/dbus.h \
35 VBox/uvm.h \
36 iprt/tcp.h \
37 iprt/localipc.h \
38 iprt/linux/sysfs.h \
39
40# We omit a few headers which have platform specific issues or are templates.
41hdrs := $(filter-out \
42 VBox/VBoxGuest16.h \
43 VBox/VBoxGL2D.h \
44 VBox/WinNetConfig.h \
45 VBox/dbus-calls.h \
46 VBox/usblib-win.h \
47 VBox/usblib-solaris.h \
48 $(foreach os,$(filter-out $(KBUILD_TARGET),$(KBUILD_OSES)),iprt/$(os)/% VBox/$(os)/%) \
49 $(xforeach arch,$(KBUILD_ARCHES),iprt/nocrt/$(arch)/%) \
50 , $(wildcard VBox/*.h iprt/*.h iprt/*/*.h))
51
52hdrs.r3 := $(filter-out , $(hdrs))
53hdrs.r0 := $(filter-out $(cpp_hdrs) $(r3_only_hdrs), $(hdrs))
54hdrs.gc := $(filter-out \
55 VBox/VBoxGuestLib.h \
56 VBox/gvm.h \
57 iprt/thread.h \
58 iprt/mem.h \
59 iprt/alloc.h \
60 iprt/alloca.h \
61 $(cpp_hdrs) \
62 $(r3_only_hdrs) \
63 , $(hdrs))
64
65SyntaxVBoxIncludeR3_TEMPLATE = VBOXMAINEXE
66SyntaxVBoxIncludeR3_DEFS = VBOX_WITH_HGCM
67SyntaxVBoxIncludeR3_SOURCES := \
68 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs.r3)))) \
69 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.r3))))
70
71SyntaxVBoxIncludeR0_TEMPLATE = VBoxR0
72SyntaxVBoxIncludeR0_DEFS = VBOX_WITH_HGCM
73SyntaxVBoxIncludeR0_SOURCES := \
74 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs.r0)))) \
75 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.r0))))
76
77SyntaxVBoxIncludeRC_TEMPLATE = VBoxRc
78SyntaxVBoxIncludeRC_DEFS = VBOX_WITH_HGCM
79SyntaxVBoxIncludeRC_SOURCES := \
80 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs.gc)))) \
81 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.gc))))
82
83
84# Comment out the next line to simplify header correction.
85VBOX_ROOT_INCLUDE_MAKEFILE = $(PATH_ROOT)/include/Makefile.kmk
86
87include $(KBUILD_PATH)/footer.kmk
88
89
90define def_hdr
91$(eval flatname := $(subst /,_,$(basename $(hdr))))
92$$(PATH_TARGET)/$(flatname)-cpp.cpp: $$(PATH_TARGET)/
93 $(QUIET)$$(APPEND) -t -n $$@ '#include <$(hdr)>' 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
94
95$$(PATH_TARGET)/$(flatname)-c.c: $(VBOX_ROOT_INCLUDE_MAKEFILE) | $$(PATH_TARGET)/
96ifn1of ($(hdr), $(cpp_hdrs) )
97 $(QUIET)$$(APPEND) -t -n $$@ '#include <$(hdr)>' 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
98else
99 $(QUIET)$$(APPEND) -t -n $$@ 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
100endif
101
102$(subst .h,.o,$(notdir $(hdr)))::
103 $$(MAKE) -f $(MAKEFILE) $(flatname)-c.o $(flatname)-cpp.o
104
105endef
106
107$(foreach hdr,$(hdrs), $(eval $(def_hdr)))
108
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use