1 | #
|
---|
2 | # Sub-Makefile for the Windows Network Driver.
|
---|
3 | #
|
---|
4 |
|
---|
5 | #
|
---|
6 | # Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
7 | #
|
---|
8 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | # available from http://www.virtualbox.org. This file is free software;
|
---|
10 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | # General Public License as published by the Free Software Foundation,
|
---|
12 | # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | # distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | # be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | #
|
---|
16 | # If you received this file as part of a commercial VirtualBox
|
---|
17 | # distribution, then only the terms of your commercial VirtualBox
|
---|
18 | # license agreement apply instead of the previous paragraph.
|
---|
19 | #
|
---|
20 |
|
---|
21 | DEPTH ?= ../../../..
|
---|
22 | SUB_DEPTH = ..
|
---|
23 | include $(PATH_KBUILD)/subheader.kmk
|
---|
24 |
|
---|
25 | SYSMODS.win += VBoxTAP
|
---|
26 | INSTALLS.win += VBoxTAP-inf
|
---|
27 |
|
---|
28 |
|
---|
29 | TAP_DRIVER_MAJOR_VERSION = 8
|
---|
30 | TAP_DRIVER_MINOR_VERSION = 1
|
---|
31 |
|
---|
32 |
|
---|
33 | #
|
---|
34 | # VBoxTap
|
---|
35 | #
|
---|
36 | VBoxTAP_TEMPLATE = VBOXR0DRV
|
---|
37 | VBoxTAP_SDKS = W2K3DDK WINPSDKINCS
|
---|
38 | VBoxTAP_DEFS = \
|
---|
39 | TAP_DRIVER_MAJOR_VERSION=$(TAP_DRIVER_MAJOR_VERSION) \
|
---|
40 | TAP_DRIVER_MINOR_VERSION=$(TAP_DRIVER_MINOR_VERSION)
|
---|
41 | VBoxTAP_LDFLAGS = -Entry:DriverEntry@8
|
---|
42 | VBoxTAP_SOURCES = \
|
---|
43 | $(VBOX_PATH_VBOXTAP)/tapdrvr.c \
|
---|
44 | $(VBOX_PATH_VBOXTAP)/VBoxTAP.rc
|
---|
45 | VBoxTAP_LIBS = \
|
---|
46 | $(PATH_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
|
---|
47 | $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
|
---|
48 | $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
|
---|
49 | $(PATH_SDK_W2K3DDK_LIB)/ndis.lib \
|
---|
50 | $(PATH_SDK_W2K3DDK_LIB)/ntstrsafe.lib \
|
---|
51 | $(PATH_SDK_W2K3DDK_LIB)/BufferOverflowK.lib
|
---|
52 |
|
---|
53 | #
|
---|
54 | # Install the .inf.
|
---|
55 | #
|
---|
56 | VBoxTAP-inf_INST = bin/
|
---|
57 | VBoxTAP-inf_MODE = a+r,u+w
|
---|
58 | VBoxTAP-inf_SOURCES = $(VBOX_PATH_VBOXTAP)/VBoxTAP.inf
|
---|
59 |
|
---|
60 |
|
---|
61 | # generate rules
|
---|
62 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
63 |
|
---|