VirtualBox

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

Last change on this file since 17430 was 16874, checked in by vboxsync, 16 years ago

Storage/VBoxHDD: forgotten makefile references to -new include files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1# $Id: Makefile.kmk 16874 2009-02-17 20:10:30Z 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 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19# Clara, CA 95054 USA or visit http://www.sun.com if you need
20# additional information or have any questions.
21#
22
23DEPTH = ..
24include $(KBUILD_PATH)/header.kmk
25
26LIBRARIES = SyntaxVBoxIncludeR3 SyntaxVBoxIncludeR0 SyntaxVBoxIncludeGC
27
28cpp_hdrs := \
29 VBox/dbggui.h \
30 VBox/settings.h \
31 iprt/autores.h \
32 iprt/cpputils.h \
33 iprt/lock.h
34
35r3_only_hdrs := \
36 VBox/vrdpapi.h \
37 VBox/vrdpusb.h \
38 VBox/VBoxHDD.h \
39 iprt/tcp.h \
40 iprt/localipc.h
41
42hdrs := $(filter-out \
43 VBox/VBoxGuest16.h \
44 VBox/tapwin32.h \
45 VBox/usblib-win.h \
46 VBox/usblib-solaris.h, \
47 $(wildcard VBox/*.h iprt/*.h))
48
49hdrs.r3 := $(filter-out VBox/VBoxGuestLib.h, $(hdrs))
50hdrs.r0 := $(filter-out $(cpp_hdrs) $(r3_only_hdrs), $(hdrs))
51hdrs.gc := $(filter-out \
52 VBox/VBoxGuestLib.h \
53 VBox/gvm.h \
54 iprt/thread.h \
55 iprt/mem.h \
56 iprt/alloc.h \
57 $(cpp_hdrs) $(r3_only_hdrs), \
58 $(hdrs))
59
60SyntaxVBoxIncludeR3_TEMPLATE = VBOXMAINEXE
61SyntaxVBoxIncludeR3_DEFS = VBOX_WITH_HGCM
62SyntaxVBoxIncludeR3_SOURCES := \
63 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs.r3)))) \
64 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.r3))))
65
66SyntaxVBoxIncludeR0_TEMPLATE = VBOXR0
67SyntaxVBoxIncludeR0_DEFS = VBOX_WITH_HGCM
68SyntaxVBoxIncludeR0_SOURCES := \
69 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs.r0)))) \
70 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.r0))))
71
72SyntaxVBoxIncludeGC_TEMPLATE = VBOXGC
73SyntaxVBoxIncludeGC_DEFS = VBOX_WITH_HGCM
74SyntaxVBoxIncludeGC_SOURCES := \
75 $(addprefix $(PATH_TARGET)/,$(subst .h,-c.c, $(subst /,_,$(hdrs.gc)))) \
76 $(addprefix $(PATH_TARGET)/,$(subst .h,-cpp.cpp, $(subst /,_,$(hdrs.gc))))
77
78
79
80include $(KBUILD_PATH)/footer.kmk
81
82
83define def_hdr
84$(eval flatname := $(subst /,_,$(basename $(hdr))))
85$$(PATH_TARGET)/$(flatname)-cpp.cpp: $$(PATH_TARGET)/
86 $$(APPEND) -t -n $$@ '#include <$(hdr)>' 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
87
88$$(PATH_TARGET)/$(flatname)-c.c: Makefile.kmk | $$(PATH_TARGET)/
89ifn1of ($(hdr),$(cpp_hdrs))
90 $$(APPEND) -t -n $$@ '#include <$(hdr)>' 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
91else
92 $$(APPEND) -t -n $$@ 'int main(int argc, char **argv) {(void)argc; (void)argv; return 0;}'
93endif
94
95$(subst .h,.o,$(notdir $(hdr)))::
96 $$(MAKE) -f $(MAKEFILE) $(flatname)-c.o $(flatname)-cpp.o
97
98endef
99
100$(foreach hdr,$(hdrs), $(eval $(def_hdr)))
101
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