VirtualBox

source: vbox/trunk/src/VBox/Devices/Samples/Makefile.kmk@ 65919

Last change on this file since 65919 was 63885, checked in by vboxsync, 8 years ago

Devices/Samples: build by default (if testcases are built) and install the result

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1# $Id: Makefile.kmk 63885 2016-09-19 12:50:14Z vboxsync $
2## @file
3# Makefile for the device and driver samples.
4#
5
6#
7# Copyright (C) 2009-2016 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# VBoxSampleDevice - A sample device module.
24#
25DLLS += VBoxSampleDevice
26VBoxSampleDevice_TEMPLATE = VBOXR3
27VBoxSampleDevice_SOURCES = \
28 VBoxSampleDevice.cpp \
29 DevPlayground.cpp
30VBoxSampleDevice_LIBS = \
31 $(LIB_RUNTIME) \
32 $(LIB_VMM) \
33 $(LIB_REM)
34
35#
36# VBoxSampleDriver - A sample driver module.
37#
38DLLS += VBoxSampleDriver
39VBoxSampleDriver_TEMPLATE = VBOXR3
40VBoxSampleDriver_SOURCES = \
41 DrvStorageFilter.cpp
42VBoxSampleDriver_LIBS = \
43 $(LIB_RUNTIME) \
44 $(LIB_VMM) \
45 $(LIB_REM)
46
47include $(FILE_KBUILD_SUB_FOOTER)
48
49
50#
51# Installs the filter.
52#
53install-filter:
54 $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
55 $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
56# Make VBox load the driver
57 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path" \
58 "$(if $(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_INST_TARGET),$(VBoxSampleDriver_1_TARGET))"
59# Configure the matching.
60 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver" \
61 "VD"
62# The config of the injected driver.
63 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Driver" \
64 "StorageFilter"
65 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported" \
66 "1"
67
68uninstall-filter:
69 $(if-expr "$(VBOX_MANAGE)" == "",$(error VBOX_MANAGE is not defined,))
70 $(if-expr "$(VBOX_VMNAME)" == "",$(error VBOX_VMNAME is not defined,))
71 $(VBOX_MANAGE) showvminfo "$(VBOX_VMNAME)"
72 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/Drivers/VBoxSampleDriver/Path"
73 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AboveDriver"
74 $(VBOX_MANAGE) setextradata "$(VBOX_VMNAME)" "VBoxInternal/PDM/DriverTransformations/StorageFilter/AttachedDriver/Config/AsyncIOSupported"
75
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