1 | # $Id: Makefile.kmk 42154 2012-07-13 23:00:53Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Windows USB drivers.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2012 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 |
|
---|
18 | SUB_DEPTH = ../../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | LIBRARIES.win += usbd
|
---|
22 | SYSMODS.win += VBoxUSB VBoxUSBMon
|
---|
23 | PROGRAMS.win += USBInstall USBUninstall USBTest
|
---|
24 | INSTALLS.win += install-infs
|
---|
25 |
|
---|
26 | #
|
---|
27 | # usbd
|
---|
28 | #
|
---|
29 | usbd_TEMPLATE = VBOXR0DRV
|
---|
30 | usbd_SOURCES = usbd/usbd.def
|
---|
31 |
|
---|
32 | #
|
---|
33 | # VBoxUSB
|
---|
34 | #
|
---|
35 | VBoxUSB_TEMPLATE = VBOXR0DRV
|
---|
36 | ifdef VBOX_SIGNING_MODE
|
---|
37 | VBoxUSB_INSTTYPE = none
|
---|
38 | VBoxUSB_DEBUG_INSTTYPE = both
|
---|
39 | endif
|
---|
40 | VBoxUSB_SDKS = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS
|
---|
41 | VBoxUSB_DEFS = IN_RT_R0 IN_SUP_R0 VBOX_DBG_LOG_NAME=\"USBDev\"
|
---|
42 | VBoxUSB_LDFLAGS.x86 = -Entry:DriverEntry@8
|
---|
43 | VBoxUSB_LDFLAGS.amd64 = -Entry:DriverEntry
|
---|
44 | VBoxUSB_SOURCES = \
|
---|
45 | dev/VBoxUsbDev.cpp \
|
---|
46 | dev/VBoxUsbRt.cpp \
|
---|
47 | dev/VBoxUsbPnP.cpp \
|
---|
48 | dev/VBoxUsbPwr.cpp \
|
---|
49 | cmn/VBoxUsbTool.cpp \
|
---|
50 | cmn/VBoxDrvTool.cpp \
|
---|
51 | dev/VBoxUsbDev.rc
|
---|
52 | VBoxUSB_LIBS = \
|
---|
53 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/ntoskrnl.lib \
|
---|
54 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/hal.lib \
|
---|
55 | $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \
|
---|
56 | $(usbd_1_TARGET)
|
---|
57 |
|
---|
58 | #
|
---|
59 | # VBoxUSBMon
|
---|
60 | #
|
---|
61 | VBoxUSBMon_TEMPLATE = VBOXR0DRV
|
---|
62 | ifdef VBOX_SIGNING_MODE
|
---|
63 | VBoxUSBMon_INSTTYPE = none
|
---|
64 | VBoxUSBMon_DEBUG_INSTTYPE = both
|
---|
65 | endif
|
---|
66 | VBoxUSBMon_INCS := $(PATH_SUB_CURRENT)/..
|
---|
67 | VBoxUSBMon_SDKS = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS
|
---|
68 | VBoxUSBMon_DEFS = IN_RT_R0 IN_SUP_R0 i386=1 STD_CALL CONDITION_HANDLING=1 NT_INST=0 \
|
---|
69 | WIN32=100 _NT1X_=100 WINNT=1 _WIN32_WINNT=0x0501 WINVER=0x0501 _WIN32_IE=0x0600 WIN32_LEAN_AND_MEAN=1 \
|
---|
70 | VBOXUSBFILTERMGR_USB_SPINLOCK VBOX_DBG_LOG_NAME=\"USBMon\"
|
---|
71 | VBoxUSBMon_LDFLAGS.x86 = -Entry:DriverEntry@8
|
---|
72 | VBoxUSBMon_LDFLAGS.amd64 = -Entry:DriverEntry
|
---|
73 | ifdef VBOX_USBMON_WITH_FILTER_AUTOAPPLY
|
---|
74 | VBoxUSBMon_DEFS += VBOX_USBMON_WITH_FILTER_AUTOAPPLY
|
---|
75 | endif
|
---|
76 | VBoxUSBMon_SOURCES = \
|
---|
77 | mon/VBoxUsbMon.cpp \
|
---|
78 | mon/VBoxUsbFlt.cpp \
|
---|
79 | mon/VBoxUsbHook.cpp \
|
---|
80 | cmn/VBoxUsbTool.cpp \
|
---|
81 | cmn/VBoxDrvTool.cpp \
|
---|
82 | ../USBFilter.cpp \
|
---|
83 | ../VBoxUSBFilterMgr.cpp \
|
---|
84 | mon/VBoxUsbMon.rc
|
---|
85 | VBoxUSBMon_LIBS = \
|
---|
86 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/ntoskrnl.lib \
|
---|
87 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/hal.lib \
|
---|
88 | $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \
|
---|
89 | $(usbd_1_TARGET)
|
---|
90 | if1of ($(KBUILD_TYPE), debug)
|
---|
91 | VBoxUSBMon_DEFS += LOG_ENABLED VBOX_USB_WITH_VERBOSE_LOGGING
|
---|
92 | endif
|
---|
93 |
|
---|
94 | #
|
---|
95 | # USBInstall
|
---|
96 | #
|
---|
97 | USBInstall_TEMPLATE = VBOXR3EXE
|
---|
98 | USBInstall_DEFS = IN_RT_R3
|
---|
99 | USBInstall_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
|
---|
100 | USBInstall_CXXFLAGS = -Gz
|
---|
101 | USBInstall_CFLAGS = -Gz
|
---|
102 | USBInstall_SOURCES = \
|
---|
103 | Install/USBInstall.cpp
|
---|
104 | USBInstall_LIBS = \
|
---|
105 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/newdev.lib \
|
---|
106 | $(LIB_RUNTIME) \
|
---|
107 | $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB) \
|
---|
108 | $(PATH_STAGE_LIB)/VBoxDrvCfg$(VBOX_SUFF_LIB)
|
---|
109 |
|
---|
110 |
|
---|
111 | #
|
---|
112 | # USBUninstall
|
---|
113 | #
|
---|
114 | USBUninstall_TEMPLATE = VBOXR3EXE
|
---|
115 | USBUninstall_DEFS = IN_RT_R3
|
---|
116 | USBUninstall_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
|
---|
117 | USBUninstall_CXXFLAGS = -Gz
|
---|
118 | USBUninstall_CFLAGS = -Gz
|
---|
119 | USBUninstall_SOURCES = \
|
---|
120 | Install/USBUninstall.cpp
|
---|
121 | USBUninstall_LIBS = \
|
---|
122 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/newdev.lib \
|
---|
123 | $(LIB_RUNTIME) \
|
---|
124 | $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB) \
|
---|
125 | $(PATH_STAGE_LIB)/VBoxDrvCfg$(VBOX_SUFF_LIB)
|
---|
126 |
|
---|
127 | #
|
---|
128 | # USBTest
|
---|
129 | #
|
---|
130 | USBTest_TEMPLATE = VBOXR3EXE
|
---|
131 | USBTest_DEFS = IN_RT_R3
|
---|
132 | USBTest_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
|
---|
133 | USBTest_CXXFLAGS = -Gz
|
---|
134 | USBTest_CFLAGS = -Gz
|
---|
135 | USBTest_SOURCES = \
|
---|
136 | testcase/USBTest.cpp
|
---|
137 | USBTest_LIBS = \
|
---|
138 | $(PATH_SDK_$(VBOX_WINDDK)_LIB)/newdev.lib \
|
---|
139 | $(LIB_RUNTIME) \
|
---|
140 | $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB) \
|
---|
141 | $(PATH_STAGE_LIB)/VBoxDrvCfg$(VBOX_SUFF_LIB)
|
---|
142 |
|
---|
143 | #
|
---|
144 | # Install the INF files.
|
---|
145 | #
|
---|
146 | install-infs_INST = bin/
|
---|
147 | install-infs_MODE = a+r,u+w
|
---|
148 | install-infs_SOURCES = \
|
---|
149 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.inf \
|
---|
150 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.inf
|
---|
151 | install-infs_CLEAN = $(install-infs_SOURCES)
|
---|
152 | install-infs_BLDDIRS = \
|
---|
153 | $(PATH_TARGET)/VBoxUSBCat.dir \
|
---|
154 | $(PATH_TARGET)/VBoxUSBMonCat.dir
|
---|
155 |
|
---|
156 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.inf: $(PATH_SUB_CURRENT)/dev/VBoxUSB.inf $(MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
157 | $(call MSG_GENERATE,install-infs,$@,$<)
|
---|
158 | $(call VBOX_EDIT_INF_FN,$<,$@)
|
---|
159 |
|
---|
160 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.inf: $(PATH_SUB_CURRENT)/mon/VBoxUSBMon.inf $(MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
161 | $(call MSG_GENERATE,install-infs,$@,$<)
|
---|
162 | $(call VBOX_EDIT_INF_FN,$<,$@)
|
---|
163 |
|
---|
164 | ifdef VBOX_SIGNING_MODE
|
---|
165 | install-infs_SOURCES += \
|
---|
166 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.cat \
|
---|
167 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.sys \
|
---|
168 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.cat \
|
---|
169 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.sys
|
---|
170 |
|
---|
171 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.sys: $$(VBoxUSB_1_TARGET) | $$(dir $$@)
|
---|
172 | $(INSTALL) -m 644 $< $(@D)
|
---|
173 |
|
---|
174 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.cat: \
|
---|
175 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.inf \
|
---|
176 | $(PATH_TARGET)/VBoxUSBCat.dir/VBoxUSB.sys
|
---|
177 | $(call MSG_TOOL,Inf2Cat,VBoxUSB-inf,$@,$<)
|
---|
178 | $(call VBOX_MAKE_CAT_FN, $(@D),$@)
|
---|
179 |
|
---|
180 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.sys: $$(VBoxUSBMon_1_TARGET) | $$(dir $$@)
|
---|
181 | $(INSTALL) -m 644 $< $(@D)
|
---|
182 |
|
---|
183 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.cat: \
|
---|
184 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.inf \
|
---|
185 | $(PATH_TARGET)/VBoxUSBMonCat.dir/VBoxUSBMon.sys
|
---|
186 | $(call MSG_TOOL,Inf2Cat,VBoxUSBMon-inf,$@,$<)
|
---|
187 | $(call VBOX_MAKE_CAT_FN, $(@D),$@)
|
---|
188 |
|
---|
189 | endif # signing
|
---|
190 |
|
---|
191 | # generate rules
|
---|
192 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
193 |
|
---|