1 | # $Id: Makefile.kmk 48952 2013-10-07 21:54:31Z 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 | # Include sub-makefiles.
|
---|
22 | if1of ($(KBUILD_TARGET), darwin solaris win)
|
---|
23 | include $(PATH_SUB_CURRENT)/$(KBUILD_TARGET)/Makefile.kmk
|
---|
24 | endif
|
---|
25 |
|
---|
26 | #
|
---|
27 | # USBLib - The static USB Library for use in VBoxSVC and VBoxDD.
|
---|
28 | #
|
---|
29 | # Note! Drivers using USBFilter.cpp should just add ../USBFilter.cpp
|
---|
30 | # to their source list.
|
---|
31 | #
|
---|
32 | LIBRARIES += USBLib
|
---|
33 | USBLib_TEMPLATE = VBOXR3
|
---|
34 | USBLib_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK)
|
---|
35 | USBLib_DEFS = IN_USBLIB
|
---|
36 | USBLib_DEFS.os2 = STATIC_USBCALLS
|
---|
37 | USBLib_DEFS.win = _WIN32_WINNT=0x0501
|
---|
38 | USBLib_SOURCES = \
|
---|
39 | USBLib.cpp \
|
---|
40 | USBFilter.cpp
|
---|
41 |
|
---|
42 | # OS specific bits if applicable.
|
---|
43 | USBLib_SOURCES.darwin = \
|
---|
44 | darwin/USBLib-darwin.cpp
|
---|
45 | USBLib_SOURCES.os2 = \
|
---|
46 | os2/usbcalls.c
|
---|
47 | USBLib_SOURCES.solaris = \
|
---|
48 | solaris/USBLib-solaris.cpp
|
---|
49 | USBLib_SOURCES.win = \
|
---|
50 | win/lib/VBoxUsbLib-win.cpp
|
---|
51 |
|
---|
52 | ifdef VBOX_WITH_TESTCASES
|
---|
53 | #
|
---|
54 | # USBFilter testcase.
|
---|
55 | #
|
---|
56 | PROGRAMS += tstUSBFilter
|
---|
57 | tstUSBFilter_TEMPLATE = VBOXR3TSTEXE
|
---|
58 | tstUSBFilter_DEFS = IN_USBLIB
|
---|
59 | tstUSBFilter_SOURCES = \
|
---|
60 | testcase/tstUSBFilter.cpp
|
---|
61 | tstUSBFilter_LIBS = \
|
---|
62 | $(USBLib_1_TARGET)
|
---|
63 | endif # VBOX_WITH_TESTCASES
|
---|
64 |
|
---|
65 |
|
---|
66 | # generate rules
|
---|
67 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
68 |
|
---|