1 | # $Id: Makefile.kmk 4071 2007-08-07 17:07:59Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Windows Network Driver.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | # distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | # be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 |
|
---|
17 | DEPTH ?= ../../../..
|
---|
18 | SUB_DEPTH = ..
|
---|
19 | include $(PATH_KBUILD)/subheader.kmk
|
---|
20 |
|
---|
21 |
|
---|
22 |
|
---|
23 | #
|
---|
24 | # VBoxTap
|
---|
25 | #
|
---|
26 | SYSMODS.win += VBoxTAP
|
---|
27 | VBoxTAP_TEMPLATE = VBOXR0DRV
|
---|
28 | ifdef VBOX_SIGNING_MODE
|
---|
29 | VBoxTAP_NOINST = true
|
---|
30 | endif
|
---|
31 | VBoxTAP_SDKS = W2K3DDK WINPSDKINCS
|
---|
32 | VBoxTAP_LDFLAGS.x86 = -Entry:DriverEntry@8
|
---|
33 | VBoxTAP_LDFLAGS.amd64 = -Entry:DriverEntry
|
---|
34 | VBoxTAP_SOURCES = \
|
---|
35 | tapdrvr.c \
|
---|
36 | VBoxTAP.rc
|
---|
37 | VBoxTAP_LIBS = \
|
---|
38 | $(PATH_LIB)/RuntimeR0$(VBOX_SUFF_LIB) \
|
---|
39 | $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
|
---|
40 | $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
|
---|
41 | $(PATH_SDK_W2K3DDK_LIB)/ndis.lib \
|
---|
42 | $(PATH_SDK_W2K3DDK_LIB)/ntstrsafe.lib \
|
---|
43 | $(PATH_SDK_W2K3DDK_LIB)/BufferOverflowK.lib
|
---|
44 |
|
---|
45 | #
|
---|
46 | # Install the .inf.
|
---|
47 | #
|
---|
48 | INSTALLS.win += VBoxTAP-inf
|
---|
49 | VBoxTAP-inf_INST = $(INST_BIN)
|
---|
50 | VBoxTAP-inf_MODE = a+r,u+w
|
---|
51 | VBoxTAP-inf_SOURCES = \
|
---|
52 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf
|
---|
53 | VBoxTAP-inf_CLEAN = $(VBoxTAP-inf_SOURCES)
|
---|
54 | VBoxTAP-inf_BLDDIRS = $(PATH_TARGET)/VBoxTAPCat.dir
|
---|
55 |
|
---|
56 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf: $(PATH_SUB_CURRENT)/VBoxTAP.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D))
|
---|
57 | $(call MSG_GENERATE,VBoxTAP-inf,$@,$<)
|
---|
58 | $(call VBOX_EDIT_INF_FN,$<,$@)
|
---|
59 |
|
---|
60 | ifdef VBOX_SIGNING_MODE
|
---|
61 | VBoxTAP-inf_SOURCES += \
|
---|
62 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat \
|
---|
63 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.sys
|
---|
64 |
|
---|
65 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.sys: $$(TARGET_VBoxTAP) | $$(call DIRDEP,$$(@D))
|
---|
66 | $(INSTALL) -m 644 $< $(@D)
|
---|
67 |
|
---|
68 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.cat: \
|
---|
69 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.inf \
|
---|
70 | $(PATH_TARGET)/VBoxTAPCat.dir/VBoxTAP.sys
|
---|
71 | $(call MSG_TOOL,Inf2Cat,VBoxTAP-inf,$@,$<)
|
---|
72 | $(INSTALL) -m 644 $(TARGET_VBoxTAP) $(@D)
|
---|
73 | $(call VBOX_MAKE_CAT_FN, $(@D),$@)
|
---|
74 | endif # signing
|
---|
75 |
|
---|
76 |
|
---|
77 | # generate rules
|
---|
78 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
79 |
|
---|