1 | # $Id: Makefile.kmk 62496 2016-07-22 18:47:44Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Bus Mouse Extension Pack Sample.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2010-2016 Oracle Corporation
|
---|
8 | #
|
---|
9 | # Permission is hereby granted, free of charge, to any person
|
---|
10 | # obtaining a copy of this software and associated documentation
|
---|
11 | # files (the "Software"), to deal in the Software without
|
---|
12 | # restriction, including without limitation the rights to use,
|
---|
13 | # copy, modify, merge, publish, distribute, sublicense, and/or sell
|
---|
14 | # copies of the Software, and to permit persons to whom the
|
---|
15 | # Software is furnished to do so, subject to the following
|
---|
16 | # conditions:
|
---|
17 | #
|
---|
18 | # The above copyright notice and this permission notice shall be
|
---|
19 | # included in all copies or substantial portions of the Software.
|
---|
20 | #
|
---|
21 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
---|
22 | # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
---|
23 | # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
---|
24 | # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
---|
25 | # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
---|
26 | # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
---|
27 | # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
28 | # OTHER DEALINGS IN THE SOFTWARE.
|
---|
29 | #
|
---|
30 |
|
---|
31 | SUB_DEPTH = ../../../..
|
---|
32 | include $(KBUILD_PATH)/subheader.kmk
|
---|
33 |
|
---|
34 | #
|
---|
35 | # Extend the extension pack templates.
|
---|
36 | #
|
---|
37 | TEMPLATE_VBoxR3ExtPackBusMouse = For the ring-3 context modules in the Bus Mouse extension pack.
|
---|
38 | TEMPLATE_VBoxR3ExtPackBusMouse_EXTENDS = VBoxR3ExtPack
|
---|
39 | TEMPLATE_VBoxR3ExtPackBusMouse_INST = $(INST_EXTPACK)BusMouse/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/
|
---|
40 |
|
---|
41 | TEMPLATE_VBoxR0ExtPackBusMouse = For the ring-0 context modules in the Bus Mouse extension pack.
|
---|
42 | TEMPLATE_VBoxR0ExtPackBusMouse_EXTENDS = VBoxR0ExtPack
|
---|
43 | TEMPLATE_VBoxR0ExtPackBusMouse_INST = $(INST_EXTPACK)BusMouse/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/
|
---|
44 |
|
---|
45 | TEMPLATE_VBoxRcExtPackBusMouse = For the raw-mode context modules in the Bus Mouse extension pack.
|
---|
46 | TEMPLATE_VBoxRcExtPackBusMouse_EXTENDS = VBoxRcExtPack
|
---|
47 | TEMPLATE_VBoxRcExtPackBusMouse_INST = $(INST_EXTPACK)BusMouse/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/
|
---|
48 |
|
---|
49 | TEMPLATE_VBoxInsExtPackBusMouse = For the install targets of an extension pack.
|
---|
50 | TEMPLATE_VBoxInsExtPackBusMouse_EXTENDS = VBoxR0ExtPack
|
---|
51 | TEMPLATE_VBoxInsExtPackBusMouse_INST = $(INST_EXTPACK)BusMouse/
|
---|
52 |
|
---|
53 | #
|
---|
54 | # Globals.
|
---|
55 | #
|
---|
56 | VBOX_BUSMOUSE_NAME = BusMouse
|
---|
57 | VBOX_BUSMOUSE_MANGLED_NAME = BusMouse
|
---|
58 | VBOX_PATH_EXTPACK_BUSMOUSE = $(PATH_STAGE)/$(INST_EXTPACK)BusMouse
|
---|
59 |
|
---|
60 |
|
---|
61 | #
|
---|
62 | # VBoxBusMouseMain - The module which the VirtualBox Main API talks to.
|
---|
63 | #
|
---|
64 | DLLS += VBoxBusMouseMain
|
---|
65 | VBoxBusMouseMain_TEMPLATE = VBoxR3ExtPackBusMouse
|
---|
66 | VBoxBusMouseMain_SOURCES = VBoxBusMouseMain.cpp
|
---|
67 | VBoxBusMouseMain_DEFS =
|
---|
68 |
|
---|
69 |
|
---|
70 | #
|
---|
71 | # The device code.
|
---|
72 | #
|
---|
73 | DLLS += VBoxBusMouseR3
|
---|
74 | VBoxBusMouseR3_TEMPLATE = VBoxR3ExtPackBusMouse
|
---|
75 | VBoxBusMouseR3_SOURCES = BusMouse.cpp
|
---|
76 |
|
---|
77 | SYSMODS += VBoxBusMouseR0
|
---|
78 | VBoxBusMouseR0_TEMPLATE = VBoxR0ExtPackBusMouse
|
---|
79 | VBoxBusMouseR0_SOURCES = BusMouse.cpp
|
---|
80 |
|
---|
81 | ifdef VBOX_WITH_RAW_MODE
|
---|
82 | SYSMODS += VBoxBusMouseRC
|
---|
83 | VBoxBusMouseRC_TEMPLATE = VBoxRcExtPackBusMouse
|
---|
84 | VBoxBusMouseRC_SOURCES = BusMouse.cpp
|
---|
85 | endif
|
---|
86 |
|
---|
87 |
|
---|
88 | #
|
---|
89 | # Install the description.
|
---|
90 | #
|
---|
91 | INSTALLS += VBoxBusMouseIns
|
---|
92 | VBoxBusMouseIns_TEMPLATE = VBoxInsExtPackBusMouse
|
---|
93 | VBoxBusMouseIns_SOURCES = \
|
---|
94 | $(VBoxBusMouseIns_0_OUTDIR)/ExtPack.xml
|
---|
95 | $(call VBOX_EDIT_VERSION_RULE_FN,VBoxBusMouseIns,ExtPack.xml)
|
---|
96 |
|
---|
97 |
|
---|
98 | #
|
---|
99 | # Packing.
|
---|
100 | #
|
---|
101 | ifndef VBOX_WITHOUT_EXTPACK_BUSMOUSE_PACKING
|
---|
102 | PACKING += $(VBOX_PATH_PACKAGES)/$(VBOX_BUSMOUSE_MANGLED_NAME)-$(VBOX_VERSION_STRING)r$(VBOX_SVN_REV).vbox-extpack
|
---|
103 | endif
|
---|
104 |
|
---|
105 | ifndef VBOX_WITH_EXTPACK_OS_ARCHS
|
---|
106 | ifeq ($(USER),bird) # for now
|
---|
107 | VBOX_WITH_EXTPACK_OS_ARCHS = $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)
|
---|
108 | endif
|
---|
109 | endif
|
---|
110 |
|
---|
111 | # Build the file list. The macro takes 1=darwin.x86, 2=dist/VirtualBox.app/Contents/MacOS, 3=dylib
|
---|
112 | VBOX_BUSMOUSE_FILES_MACRO = \
|
---|
113 | $(PATH_OUT_BASE)/$(1)/$(KBUILD_TYPE)/$(2)/ExtensionPacks/$(VBOX_BUSMOUSE_MANGLED_NAME)/$(1)/VBoxBusMouseMain.$(3)=>$(1)/VBoxBusMouseMain.$(3) \
|
---|
114 | $(PATH_OUT_BASE)/$(1)/$(KBUILD_TYPE)/$(2)/ExtensionPacks/$(VBOX_BUSMOUSE_MANGLED_NAME)/$(1)/VBoxBusMouseR3.$(3)=>$(1)/VBoxBusMouseR3.$(3) \
|
---|
115 | $(PATH_OUT_BASE)/$(1)/$(KBUILD_TYPE)/$(2)/ExtensionPacks/$(VBOX_BUSMOUSE_MANGLED_NAME)/$(1)/VBoxBusMouseR0.r0=>$(1)/VBoxBusMouseR0.r0
|
---|
116 | ifdef VBOX_WITH_RAW_MODE
|
---|
117 | VBOX_BUSMOUSE_FILES_MACRO += \
|
---|
118 | $(PATH_OUT_BASE)/$(1)/$(KBUILD_TYPE)/$(2)/ExtensionPacks/$(VBOX_BUSMOUSE_MANGLED_NAME)/$(1)/VBoxBusMouseRC.rc=>$(1)/VBoxBusMouseRC.rc
|
---|
119 | endif
|
---|
120 |
|
---|
121 | VBOX_BUSMOUSE_FILES := \
|
---|
122 | $(VBOX_PATH_EXTPACK_BUSMOUSE)/ExtPack.xml=>ExtPack.xml
|
---|
123 |
|
---|
124 | if1of (darwin.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
125 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,darwin.amd64,dist/VirtualBox.app/Contents/MacOS,dylib)
|
---|
126 | endif
|
---|
127 | if1of (darwin.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
128 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,darwin.x86,dist/VirtualBox.app/Contents/MacOS,dylib)
|
---|
129 | endif
|
---|
130 | if1of (freebsd.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
131 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,freebsd.amd64,bin,so)
|
---|
132 | endif
|
---|
133 | if1of (freebsd.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
134 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,freebsd.x86,bin,so)
|
---|
135 | endif
|
---|
136 | if1of (linux.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
137 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,linux.amd64,bin,so)
|
---|
138 | endif
|
---|
139 | if1of (linux.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
140 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,linux.x86,bin,so)
|
---|
141 | endif
|
---|
142 | if1of (os2.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
143 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,os2.x86,bin,so)
|
---|
144 | endif
|
---|
145 | if1of (solaris.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
146 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,solaris.amd64,bin,so)
|
---|
147 | endif
|
---|
148 | if1of (solaris.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
149 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,solaris.x86,bin,so)
|
---|
150 | endif
|
---|
151 | if1of (win.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
152 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,win.amd64,bin,dll)
|
---|
153 | endif
|
---|
154 | if1of (win.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
|
---|
155 | VBOX_BUSMOUSE_FILES += $(call VBOX_BUSMOUSE_FILES_MACRO,win.x86,bin,dll)
|
---|
156 | endif
|
---|
157 |
|
---|
158 | # Pack it all up using a temporary staging directory.
|
---|
159 | $(VBOX_PATH_PACKAGES)/$(VBOX_BUSMOUSE_MANGLED_NAME)-$(VBOX_VERSION_STRING)r$(VBOX_SVN_REV).vbox-extpack: \
|
---|
160 | $$(foreach file, $$(VBOX_BUSMOUSE_FILES), $$(firstword $$(subst =>,$$(SP),$$(file)))) \
|
---|
161 | | $(VBOX_PATH_PACKAGES)/
|
---|
162 | $(RM) -f $(wildcard $(VBOX_PATH_PACKAGES)/$(VBOX_BUSMOUSE_MANGLED_NAME)-*.vbox-extpack) \
|
---|
163 | $(VBoxBusMouseIns_0_OUTDIR)/ExtPack.manifest \
|
---|
164 | $(VBoxBusMouseIns_0_OUTDIR)/ExtPack.signature
|
---|
165 | # Stage all the files
|
---|
166 | $(RM) -Rf $(VBoxBusMouseIns_0_OUTDIR)/Stage/
|
---|
167 | $(foreach file, $(VBOX_BUSMOUSE_FILES),\
|
---|
168 | $(NLTAB)$(MKDIR) -p $(dir $(lastword $(subst =>,$(SP)$(VBoxBusMouseIns_0_OUTDIR)/Stage/,$(file)))) \
|
---|
169 | $(NLTAB)$(CP) $(subst =>,$(SP)$(VBoxBusMouseIns_0_OUTDIR)/Stage/,$(file)) )
|
---|
170 | # Create the manifest
|
---|
171 | $(VBOX_RTMANIFEST) \
|
---|
172 | --manifest $(VBoxBusMouseIns_0_OUTDIR)/Stage/ExtPack.manifest \
|
---|
173 | --chdir $(VBoxBusMouseIns_0_OUTDIR)/Stage/ \
|
---|
174 | $(foreach file, $(VBOX_BUSMOUSE_FILES), $(lastword $(subst =>,$(SP),$(file))))
|
---|
175 | $(APPEND) $(VBoxBusMouseIns_0_OUTDIR)/Stage/ExtPack.signature "todo"
|
---|
176 | $(CHMOD) a+r \
|
---|
177 | $(VBoxBusMouseIns_0_OUTDIR)/Stage/ExtPack.manifest \
|
---|
178 | $(VBoxBusMouseIns_0_OUTDIR)/Stage/ExtPack.signature
|
---|
179 | # Tar it up.
|
---|
180 | tar -cvf - -C $(VBoxBusMouseIns_0_OUTDIR)/Stage/ . | gzip -9c > $@
|
---|
181 | # Clean up
|
---|
182 | $(RM) -Rf $(VBoxBusMouseIns_0_OUTDIR)/Stage/
|
---|
183 |
|
---|
184 | BLDDIRS += $(VBOX_PATH_PACKAGES)/
|
---|
185 |
|
---|
186 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
187 |
|
---|