1 | # $Id: Makefile.kmk 42288 2012-07-20 18:30:53Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for VBoxTray.
|
---|
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 | PROGRAMS += VBoxTray
|
---|
22 | VBoxTray_TEMPLATE = NewVBoxGuestR3Exe
|
---|
23 | ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.)
|
---|
24 | VBoxTray_INSTTYPE = none
|
---|
25 | VBoxTray_DEBUG_INSTTYPE = both
|
---|
26 | endif
|
---|
27 | VBoxTray_SDKS = ReorderCompilerIncs $(VBOX_WINDDK_GST)
|
---|
28 | VBoxTray_DEFS = VBOX_WITH_HGCM LOG_TO_BACKDOOR
|
---|
29 | VBoxTray_INCS = ../include
|
---|
30 | VBoxTray_SOURCES = \
|
---|
31 | VBoxTray.cpp \
|
---|
32 | VBoxDispIf.cpp \
|
---|
33 | VBoxSeamless.cpp \
|
---|
34 | VBoxClipboard.cpp \
|
---|
35 | VBoxDisplay.cpp \
|
---|
36 | VBoxVRDP.cpp \
|
---|
37 | VBoxRestore.cpp \
|
---|
38 | VBoxIPC.cpp \
|
---|
39 | VBoxHelpers.cpp \
|
---|
40 | VBoxTray.rc
|
---|
41 | ifdef VBOX_WITH_GUEST_PROPS
|
---|
42 | VBoxTray_DEFS += _WIN32_IE=0x500 VBOX_WITH_GUEST_PROPS
|
---|
43 | VBoxTray_SOURCES += \
|
---|
44 | VBoxHostVersion.cpp \
|
---|
45 | VBoxLA.cpp
|
---|
46 | endif
|
---|
47 | ifdef VBOX_WITH_SHARED_FOLDERS
|
---|
48 | VBoxTray_DEFS += VBOX_WITH_SHARED_FOLDERS
|
---|
49 | VBoxTray_SOURCES += \
|
---|
50 | VBoxSharedFolders.cpp
|
---|
51 | VBoxTray_LIBS.win += \
|
---|
52 | mpr.lib
|
---|
53 | endif
|
---|
54 | ifdef VBOX_WITH_MMR
|
---|
55 | VBoxTray_DEFS += VBOX_WITH_MMR
|
---|
56 | VBoxTray_SOURCES += \
|
---|
57 | VBoxMMR.cpp
|
---|
58 | endif
|
---|
59 |
|
---|
60 | ifdef VBOX_WITH_WDDM
|
---|
61 | VBoxTray_DEFS += VBOX_WITH_WDDM
|
---|
62 | # VBoxTray_DEFS += LOG_ENABLED
|
---|
63 | endif
|
---|
64 |
|
---|
65 | # VBoxTray.cpp uses VBOX_SVN_REV.
|
---|
66 | VBoxTray.cpp_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
|
---|
67 | VBoxTray.cpp_DEPS = $(VBOX_SVN_REV_KMK)
|
---|
68 |
|
---|
69 | # The icon location is configurable.
|
---|
70 | VBoxTray.rc_INCS = $(VBoxTray_0_OUTDIR)
|
---|
71 | VBoxTray.rc_DEPS = $(VBoxTray_0_OUTDIR)/VBoxTray-icon.rc
|
---|
72 | VBoxTray.rc_CLEAN = $(VBoxTray_0_OUTDIR)/VBoxTray-icon.rc
|
---|
73 |
|
---|
74 | # Icon include file.
|
---|
75 | $$(VBoxTray_0_OUTDIR)/VBoxTray-icon.rc: $(VBOX_WINDOWS_ADDITIONS_ICON_FILE) $$(VBoxTray_DEFPATH)/Makefile.kmk | $$(dir $$@)
|
---|
76 | $(RM) -f $@
|
---|
77 | $(APPEND) $@ 'IDI_VIRTUALBOX ICON DISCARDABLE "$(subst /,\\,$(VBOX_WINDOWS_ADDITIONS_ICON_FILE))"'
|
---|
78 |
|
---|
79 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
80 |
|
---|