VirtualBox

source: vbox/trunk/src/VBox/Main/cbinding/Makefile.kmk@ 70772

Last change on this file since 70772 was 69739, checked in by vboxsync, 7 years ago

cbinding: cleanup fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1# $Id: Makefile.kmk 69739 2017-11-18 03:25:21Z vboxsync $
2## @file
3# Sub-Makefile for the VBox C Binding.
4#
5
6#
7# Copyright (C) 2009-2017 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
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21
22#
23# The samples
24#
25INSTALLS += CAPISamples
26CAPISamples_MODE = a+r,u+rw
27CAPISamples_INST = \
28 $(INST_SDK)bindings/c/samples/
29CAPISamples_SOURCES = \
30 tstCAPIGlue.c \
31 makefile.tstCAPIGlue=>Makefile
32
33INSTALLS += CAPIGlue
34CAPIGlue_MODE = a+r,u+rw
35CAPIGlue_INST = \
36 $(INST_SDK)bindings/c/glue/
37CAPIGlue_SOURCES = \
38 VBoxCAPIGlue.c \
39 $(CAPIHeaders_0_OUTDIR)/VBoxCAPIGlue.h
40
41INSTALLS += CAPIHeaders
42CAPIHeaders_MODE = a+r,u+rw
43CAPIHeaders_INST = $(INST_SDK)bindings/c/include/
44CAPIHeaders_SOURCES = \
45 VBoxCAPI_v2_2.h \
46 VBoxCAPI_v3_0.h \
47 VBoxCAPI_v3_1.h \
48 VBoxCAPI_v3_2.h \
49 VBoxCAPI_v4_0.h \
50 VBoxCAPI_v4_1.h \
51 VBoxCAPI_v4_2.h \
52 VBoxCAPI_v4_3.h \
53 $(CAPIHeaders_0_OUTDIR)/VBoxCAPI.h=>VBoxCAPI_v$(VBOX_API_VERSION).h
54CAPIHeaders_CLEAN = \
55 $(CAPIHeaders_0_OUTDIR)/VBoxCAPI.h
56
57$$(CAPIHeaders_0_OUTDIR)/VBoxCAPIGlue.h: \
58 $(PATH_SUB_CURRENT)/VBoxCAPIGlue.h.in \
59 $(MAKEFILE_CURRENT) \
60 | $$(dir $$@)
61 $(call MSG_GENERATE,,$@)
62 $(QUIET)$(SED) \
63 -e 's/@VBOX_API_VERSION@/$(VBOX_API_VERSION)/' \
64 < $< > $@
65
66$$(CAPIHeaders_0_OUTDIR)/VBoxCAPI.h: \
67 $(PATH_SUB_CURRENT)/capiidl.xsl \
68 $(PATH_SUB_CURRENT)/../idl/typemap-shared.inc.xsl \
69 $(VBOX_XIDL_FILE) \
70 | $$(dir $$@)
71 $(call MSG_TOOL,xsltproc,CAPIHeaders,$<,$@)
72 $(QUIET)$(VBOX_XSLTPROC) -o $@ $^
73
74if !defined(VBOX_ONLY_SDK)
75
76 #
77 # The C API binding utility DLL
78 #
79 DLLS += VBoxCAPI
80 VBoxCAPI_TEMPLATE = VBOXMAINCLIENTDLL
81 ifdef VBOX_WITH_XPCOM
82 # Keep old name on XPCOM so that legacy code is happy.
83 VBoxCAPI_INST = $(INST_BIN)VBoxXPCOMC$(VBOX_SUFF_DLL)
84 endif
85 VBoxCAPI_DEFS = IN_VBOXCAPI
86 VBoxCAPI_SOURCES = \
87 VBoxCAPI.cpp
88 VBoxCAPI_SOURCES.win = \
89 VBoxCAPI.rc
90 VBoxCAPI_INCS = \
91 $(CAPIHeaders_0_OUTDIR)
92 VBoxCAPI_INTERMEDIATES = \
93 $(CAPIHeaders_0_OUTDIR)/VBoxCAPI.h
94
95 #
96 # The C glue library.
97 #
98 LIBRARIES += VBoxCAPIGlue
99 VBoxCAPIGlue_TEMPLATE = VBOXMAINEXE
100 VBoxCAPIGlue_DEFS = IN_VBOXCAPI
101 VBoxCAPIGlue_SOURCES = \
102 VBoxCAPIGlue.c
103 ifdef VBOX_WITH_XPCOM
104 VBoxCAPIGlue_SOURCES += \
105 $(VBOX_PATH_SDK)/bindings/xpcom/lib/VirtualBox_i.c
106 else
107 VBoxCAPIGlue_SOURCES += \
108 $(VBOX_PATH_SDK)/bindings/mscom/lib/VirtualBox_i.c
109 endif
110 VBoxCAPIGlue_INCS = \
111 $(VBOX_PATH_SDK)/bindings/c/include \
112 $(VBOX_PATH_SDK)/bindings/c/glue
113 VBoxCAPIGlue_INTERMEDIATES = \
114 $(VBOX_PATH_SDK)/bindings/c/glue/VBoxCAPIGlue.h \
115 $(VBOX_PATH_SDK)/bindings/c/include/VBoxCAPI_v$(VBOX_API_VERSION).h
116
117 if defined(VBOX_WITH_TESTCASES) && "$(KBUILD_TARGET)" != "darwin"
118 #
119 # The testcase (also in samples).
120 # C testcase using the dynamic glue.
121 #
122 PROGRAMS += tstCAPIGlue
123 tstCAPIGlue_TEMPLATE = VBOXR3TSTEXE
124 tstCAPIGlue_INCS = \
125 $(VBOX_PATH_SDK)/bindings/c/include \
126 $(VBOX_PATH_SDK)/bindings/c/glue
127 ifdef VBOX_WITH_XPCOM
128 tstCAPIGlue_INCS += \
129 $(VBOX_PATH_SDK)/bindings/xpcom/include
130 else
131 tstCAPIGlue_INCS += \
132 $(VBOX_PATH_SDK)/bindings/mscom/include
133 endif
134 tstCAPIGlue_INTERMEDIATES = \
135 $(VBOX_PATH_SDK)/bindings/c/glue/VBoxCAPIGlue.h \
136 $(VBOX_PATH_SDK)/bindings/c/include/VBoxCAPI_v$(VBOX_API_VERSION).h \
137 $(if-expr !defined(VBOX_WITH_XPCOM),$(VBOX_PATH_SDK)/bindings/mscom/include/VirtualBox.h,)
138 tstCAPIGlue_SOURCES = \
139 tstCAPIGlue.c
140 tstCAPIGlue_LIBS = \
141 $(VBoxCAPIGlue_1_TARGET)
142 endif
143
144endif # ! VBOX_ONLY_SDK
145
146# generate rules.
147include $(FILE_KBUILD_SUB_FOOTER)
148
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use