VirtualBox

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

最後變更 在這個檔案從37196是 35991,由 vboxsync 提交於 14 年 前

Fixed another bug.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 6.5 KB
 
1# $Id: Makefile.kmk 35991 2011-02-16 11:07:20Z vboxsync $
2## @file
3# Sub-Makefile for the Skeleton Extension Pack Sample.
4#
5
6#
7# Copyright (C) 2010-2011 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_INS)/$(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 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE,)
69
70#
71# Install the description.
72#
73INSTALLS += VBoxSkeletonIns
74VBoxSkeletonIns_TEMPLATE = VBoxInsExtPackSkeleton
75VBoxSkeletonIns_SOURCES = \
76 $(VBoxSkeletonIns_0_OUTDIR)/ExtPack.xml
77$(call VBOX_EDIT_VERSION_RULE_FN,VBoxSkeletonIns,ExtPack.xml)
78
79
80#
81# Packing .
82#
83ifndef VBOX_WITHOUT_EXTPACK_SKELETON_PACKING
84 PACKING += $(VBOX_PATH_PACKAGES)/$(VBOX_SKELETON_MANGLED_NAME)-$(VBOX_VERSION_STRING)r$(VBOX_SVN_REV).vbox-extpack
85endif
86
87ifndef VBOX_WITH_EXTPACK_OS_ARCHS
88 ifeq ($(USER),bird) # for now
89 VBOX_WITH_EXTPACK_OS_ARCHS = $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)
90 endif
91endif
92
93# Build the file list. The macro takes 1=darwin.x86, 2=dist/VirtualBox.app/Contents/MacOS, 3=dylib
94VBOX_SKELETON_FILES_MACRO = \
95 $(PATH_OUT_BASE)/$(1)/$(KBUILD_TYPE)/$(2)/ExtensionPacks/$(VBOX_SKELETON_MANGLED_NAME)/$(1)/VBoxSkeletonMain.$(3)=>$(1)/VBoxSkeletonMain.$(3)
96
97VBOX_SKELETON_FILES := \
98 $(VBOX_PATH_EXTPACK_SKELETON)/ExtPack.xml=>ExtPack.xml
99
100if1of (darwin.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
101 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,darwin.amd64,dist/VirtualBox.app/Contents/MacOS,dylib)
102endif
103if1of (darwin.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
104 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,darwin.x86,dist/VirtualBox.app/Contents/MacOS,dylib)
105endif
106if1of (freebsd.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
107 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,freebsd.amd64,bin,so)
108endif
109if1of (freebsd.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
110 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,freebsd.x86,bin,so)
111endif
112if1of (linux.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
113 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,linux.amd64,bin,so)
114endif
115if1of (linux.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
116 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,linux.x86,bin,so)
117endif
118if1of (os2.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
119 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,os2.x86,bin,so)
120endif
121if1of (solaris.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
122 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,solaris.amd64,bin,so)
123endif
124if1of (solaris.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
125 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,solaris.x86,bin,so)
126endif
127if1of (win.amd64, $(VBOX_WITH_EXTPACK_OS_ARCHS))
128 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,win.amd64,bin,dll)
129endif
130if1of (win.x86, $(VBOX_WITH_EXTPACK_OS_ARCHS))
131 VBOX_SKELETON_FILES += $(call VBOX_SKELETON_FILES_MACRO,win.x86,bin,dll)
132endif
133
134# Pack it all up using a temporary staging directory.
135$(VBOX_PATH_PACKAGES)/$(VBOX_SKELETON_MANGLED_NAME)-$(VBOX_VERSION_STRING)r$(VBOX_SVN_REV).vbox-extpack: \
136 $$(foreach file, $$(VBOX_SKELETON_FILES), $$(firstword $$(subst =>,$$(SP),$$(file)))) \
137 | $(VBOX_PATH_PACKAGES)/
138 $(RM) -f $(wildcard $(VBOX_PATH_PACKAGES)/$(VBOX_SKELETON_MANGLED_NAME)-*.vbox-extpack) \
139 $(VBoxSkeletonIns_0_OUTDIR)/ExtPack.manifest \
140 $(VBoxSkeletonIns_0_OUTDIR)/ExtPack.signature
141# Stage all the files
142 $(RM) -Rf $(VBoxSkeletonIns_0_OUTDIR)/Stage/
143 $(foreach file, $(VBOX_SKELETON_FILES),\
144 $(NLTAB)$(MKDIR) -p $(dir $(lastword $(subst =>,$(SP)$(VBoxSkeletonIns_0_OUTDIR)/Stage/,$(file)))) \
145 $(NLTAB)$(CP) $(subst =>,$(SP)$(VBoxSkeletonIns_0_OUTDIR)/Stage/,$(file)) )
146# Create the manifest
147 $(VBOX_RTMANIFEST) \
148 --manifest $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.manifest \
149 --chdir $(VBoxSkeletonIns_0_OUTDIR)/Stage/ \
150 $(foreach file, $(VBOX_SKELETON_FILES), $(lastword $(subst =>,$(SP),$(file))))
151 $(APPEND) $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.signature "todo"
152 $(CHMOD) a+r \
153 $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.manifest \
154 $(VBoxSkeletonIns_0_OUTDIR)/Stage/ExtPack.signature
155# Tar it up.
156 tar -cvf - -C $(VBoxSkeletonIns_0_OUTDIR)/Stage/ . | gzip -9c > $@
157# Clean up
158 $(RM) -Rf $(VBoxSkeletonIns_0_OUTDIR)/Stage/
159
160BLDDIRS += $(VBOX_PATH_PACKAGES)/ $(VBOX_PATH_PACKAGES)/
161
162include $(KBUILD_PATH)/subfooter.kmk
163
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette