VirtualBox

source: vbox/trunk/src/VBox/ExtPacks/Skeleton/Makefile.kmk@ 41477

Last change on this file since 41477 was 41477, checked in by vboxsync, 12 years ago

/Makefile.kmk: Cosmetic changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
Line 
1# $Id: Makefile.kmk 41477 2012-05-29 11:43:27Z vboxsync $
2## @file
3# Sub-Makefile for the Skeleton Extension Pack Sample.
4#
5
6#
7# Copyright (C) 2010-2012 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
31SUB_DEPTH = ../../../..
32include $(KBUILD_PATH)/subheader.kmk
33
34#
35# Extend the extension pack templates.
36#
37TEMPLATE_VBoxR3ExtPackSkeleton = For the ring-3 context modules in the Skeleton extension pack.
38TEMPLATE_VBoxR3ExtPackSkeleton_EXTENDS = VBoxR3ExtPack
39TEMPLATE_VBoxR3ExtPackSkeleton_INST = $(INST_EXTPACK)Skeleton/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/
40
41TEMPLATE_VBoxR0ExtPackSkeleton = For the ring-0 context modules in the Skeleton extension pack.
42TEMPLATE_VBoxR0ExtPackSkeleton_EXTENDS = VBoxR0ExtPack
43TEMPLATE_VBoxR0ExtPackSkeleton_INST = $(INST_EXTPACK)Skeleton/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/
44
45TEMPLATE_VBoxRcExtPackSkeleton = For the raw-mode context modules in the Skeleton extension pack.
46TEMPLATE_VBoxRcExtPackSkeleton_EXTENDS = VBoxRcExtPack
47TEMPLATE_VBoxRcExtPackSkeleton_INST = $(INST_EXTPACK)Skeleton/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/
48
49TEMPLATE_VBoxInsExtPackSkeleton = For the install targets of an extension pack.
50TEMPLATE_VBoxInsExtPackSkeleton_EXTENDS = VBoxR0ExtPack
51TEMPLATE_VBoxInsExtPackSkeleton_INST = $(INST_EXTPACK)Skeleton/
52
53#
54# Globals.
55#
56VBOX_SKELETON_NAME = Skeleton
57VBOX_SKELETON_MANGLED_NAME = Skeleton
58VBOX_PATH_EXTPACK_SKELETON = $(PATH_STAGE)/$(INST_EXTPACK)Skeleton
59
60
61#
62# VBoxSkeletonMain - The module which the VirtualBox Main API talks to.
63#
64DLLS += VBoxSkeletonMain
65VBoxSkeletonMain_TEMPLATE = VBoxR3ExtPackSkeleton
66VBoxSkeletonMain_SOURCES = VBoxSkeletonMain.cpp
67VBoxSkeletonMain_DEFS =
68
69#
70# Install the description.
71#
72INSTALLS += VBoxSkeletonIns
73VBoxSkeletonIns_TEMPLATE = VBoxInsExtPackSkeleton
74VBoxSkeletonIns_SOURCES = \
75 $(VBoxSkeletonIns_0_OUTDIR)/ExtPack.xml
76$(call VBOX_EDIT_VERSION_RULE_FN,VBoxSkeletonIns,ExtPack.xml)
77
78
79#
80# Packing.
81#
82ifndef VBOX_WITHOUT_EXTPACK_SKELETON_PACKING
83 PACKING += $(VBOX_PATH_PACKAGES)/$(VBOX_SKELETON_MANGLED_NAME)-$(VBOX_VERSION_STRING)r$(VBOX_SVN_REV).vbox-extpack
84endif
85
86ifndef VBOX_WITH_EXTPACK_OS_ARCHS
87 ifeq ($(USER),bird) # for now
88 VBOX_WITH_EXTPACK_OS_ARCHS = $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)
89 endif
90endif
91
92# Build the file list. The macro takes 1=darwin.x86, 2=dist/VirtualBox.app/Contents/MacOS, 3=dylib
93VBOX_SKELETON_FILES_MACRO = \
94 $(PATH_OUT_BASE)/$(1)/$(KBUILD_TYPE)/$(2)/ExtensionPacks/$(VBOX_SKELETON_MANGLED_NAME)/$(1)/VBoxSkeletonMain.$(3)=>$(1)/VBoxSkeletonMain.$(3)
95
96VBOX_SKELETON_FILES := \
97 $(VBOX_PATH_EXTPACK_SKELETON)/ExtPack.xml=>ExtPack.xml
98
99if1of (darwin.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
100 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,darwin.amd64,dist/VirtualBox.app/Contents/MacOS,dylib)
101endif
102if1of (darwin.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
103 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,darwin.x86,dist/VirtualBox.app/Contents/MacOS,dylib)
104endif
105if1of (freebsd.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
106 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,freebsd.amd64,bin,so)
107endif
108if1of (freebsd.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
109 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,freebsd.x86,bin,so)
110endif
111if1of (linux.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
112 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,linux.amd64,bin,so)
113endif
114if1of (linux.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
115 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,linux.x86,bin,so)
116endif
117if1of (os2.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
118 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,os2.x86,bin,so)
119endif
120if1of (solaris.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
121 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,solaris.amd64,bin,so)
122endif
123if1of (solaris.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
124 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,solaris.x86,bin,so)
125endif
126if1of (win.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
127 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,win.amd64,bin,dll)
128endif
129if1of (win.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
130 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,win.x86,bin,dll)
131endif
132
133# Pack it all up using a temporary staging directory.
134$(VBOX_PATH_PACKAGES)/$(VBOX_SKELETON_MANGLED_NAME)-$(VBOX_VERSION_STRING)r$(VBOX_SVN_REV).vbox-extpack: \
135 $$(foreach file, $$(VBOX_SKELETON_FILES), $$(firstword $$(subst =>,$$(SP),$$(file)))) \
136 | $(VBOX_PATH_PACKAGES)/
137 $(RM) -f $(wildcard $(VBOX_PATH_PACKAGES)/$(VBOX_SKELETON_MANGLED_NAME)-*.vbox-extpack) \
138 $(VBoxSkeletonIns_0_OUTDIR)/ExtPack.manifest \
139 $(VBoxSkeletonIns_0_OUTDIR)/ExtPack.signature
140# Stage all the files
141 $(RM) -Rf $(VBoxSkeletonIns_0_OUTDIR)/Stage/
142 $(foreach file, $(VBOX_SKELETON_FILES),\
143 $(NLTAB)$(MKDIR) -p $(dir $(lastword $(subst =>,$(SP)$(VBoxSkeletonIns_0_OUTDIR)/Stage/,$(file)))) \
144 $(NLTAB)$(CP) $(subst =>,$(SP)$(VBoxSkeletonIns_0_OUTDIR)/Stage/,$(file)) )
145# Create the manifest
146 $(VBOX_RTMANIFEST) \
147 --manifest $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.manifest \
148 --chdir $(VBoxSkeletonIns_0_OUTDIR)/Stage/ \
149 $(foreach file, $(VBOX_SKELETON_FILES), $(lastword $(subst =>,$(SP),$(file))))
150 $(APPEND) $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.signature "todo"
151 $(CHMOD) a+r \
152 $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.manifest \
153 $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.signature
154# Tar it up.
155 tar -cvf - -C $(VBoxSkeletonIns_0_OUTDIR)/Stage/ . | gzip -9c > $@
156# Clean up
157 $(RM) -Rf $(VBoxSkeletonIns_0_OUTDIR)/Stage/
158
159BLDDIRS += $(VBOX_PATH_PACKAGES)/
160
161include $(FILE_KBUILD_SUB_FOOTER)
162
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