1 | # $Id: Makefile.kmk 19327 2009-05-04 14:54:21Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Cross Platform Guest Addition Services.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2007 Sun Microsystems, Inc.
|
---|
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 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | # additional information or have any questions.
|
---|
20 | #
|
---|
21 |
|
---|
22 | SUB_DEPTH = ../../../../..
|
---|
23 | include $(KBUILD_PATH)/subheader.kmk
|
---|
24 |
|
---|
25 | if "$(KBUILD_HOST)" != "os2" || defined(VBOX_WITH_OS2_ADDITIONS)
|
---|
26 | PROGRAMS += VBoxService
|
---|
27 | endif
|
---|
28 |
|
---|
29 | #
|
---|
30 | # VBoxService.exe
|
---|
31 | #
|
---|
32 | VBoxService_TEMPLATE = VBOXGUESTR3EXE
|
---|
33 | VBoxService_DEFS = VBOXSERVICE_TIMESYNC
|
---|
34 | VBoxService_DEFS.win += _WIN32_WINNT=0x0501 _UNICODE UNICODE
|
---|
35 | VBoxService_DEFS.os2 = VBOX_WITH_HGCM VBOXSERVICE_CLIPBOARD
|
---|
36 | ifdef VBOX_WITH_GUEST_PROPS
|
---|
37 | VBoxService_DEFS.win += VBOX_WITH_GUEST_PROPS VBOXSERVICE_VMINFO
|
---|
38 | endif
|
---|
39 | VBoxService_SOURCES = \
|
---|
40 | VBoxService.cpp \
|
---|
41 | VBoxServiceTimeSync.cpp
|
---|
42 | VBoxService_SOURCES.win = \
|
---|
43 | VBoxService-win.cpp \
|
---|
44 | VBoxServiceVMInfo.cpp \
|
---|
45 | VBoxServiceVMInfo-win.cpp
|
---|
46 | VBoxService_SOURCES.os2 = \
|
---|
47 | VBoxService-os2.def \
|
---|
48 | VBoxServiceClipboard-os2.cpp
|
---|
49 | VBoxService_LIBS = \
|
---|
50 | $(VBOX_LIB_IPRT_GUEST_R3) \
|
---|
51 | $(VBOX_LIB_VBGL_R3) \
|
---|
52 | $(VBOX_LIB_IPRT_GUEST_R3)
|
---|
53 | ifdef VBOX_WITH_GUEST_PROPS
|
---|
54 | VBoxService_LIBS.win += \
|
---|
55 | Secur32.lib \
|
---|
56 | WtsApi32.lib \
|
---|
57 | Psapi.lib
|
---|
58 | endif
|
---|
59 |
|
---|
60 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
61 |
|
---|