1 | # $Id: Makefile.kmk 4071 2007-08-07 17:07:59Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Windows guest graphics 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 | # Include sub-makefiles.
|
---|
22 | include $(PATH_SUB_CURRENT)/Miniport/Makefile.kmk
|
---|
23 | include $(PATH_SUB_CURRENT)/Display/Makefile.kmk
|
---|
24 | include $(PATH_SUB_CURRENT)/OpenGL/Makefile.kmk
|
---|
25 |
|
---|
26 | #
|
---|
27 | # Install the inf & cat.
|
---|
28 | # This has to be done here since it depends on both the
|
---|
29 | # miniport driver and the display dll.
|
---|
30 | #
|
---|
31 | INSTALLS += VBoxVideo-inf
|
---|
32 | VBoxVideo-inf_INST = $(INST_ADDITIONS)
|
---|
33 | VBoxVideo-inf_MODE = a+r,u+w
|
---|
34 | ifndef VBOX_SIGN_ADDITIONS
|
---|
35 | VBoxVideo-inf_SOURCES = Miniport/VBoxVideo.inf
|
---|
36 | else
|
---|
37 | VBoxVideo-inf_SOURCES = \
|
---|
38 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf \
|
---|
39 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys \
|
---|
40 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll \
|
---|
41 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.cat
|
---|
42 | VBoxVideo-inf_CLEAN = $(VBoxVideo-inf_SOURCES)
|
---|
43 | VBoxVideo-inf_BLDDIRS = $(PATH_TARGET)/VBoxVideoCat.dir
|
---|
44 |
|
---|
45 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf: $(PATH_SUB_CURRENT)/Miniport/VBoxVideo.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D))
|
---|
46 | $(call MSG_GENERATE,VBoxVideo-inf,$@,$<)
|
---|
47 | $(call VBOX_EDIT_INF32_FN,$<,$@)
|
---|
48 |
|
---|
49 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys: $$(TARGET_VBoxVideo) | $$(call DIRDEP,$$(@D))
|
---|
50 | $(INSTALL) -m 644 $< $(@D)
|
---|
51 |
|
---|
52 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll: $$(TARGET_VBoxDisp) | $$(call DIRDEP,$$(@D))
|
---|
53 | $(INSTALL) -m 644 $< $(@D)
|
---|
54 |
|
---|
55 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.cat: \
|
---|
56 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.inf \
|
---|
57 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxVideo.sys \
|
---|
58 | $(PATH_TARGET)/VBoxVideoCat.dir/VBoxDisp.dll
|
---|
59 | $(call MSG_TOOL,Inf2Cat,VBoxVideo-inf,$@,$<)
|
---|
60 | $(call VBOX_MAKE_CAT32_FN, $(@D),$@)
|
---|
61 |
|
---|
62 | endif # signing
|
---|
63 |
|
---|
64 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
65 |
|
---|