1 | # $Id: Makefile.kmk 8760 2008-05-11 18:39:30Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # 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 | DEPTH ?= ../../../../..
|
---|
23 | SUB_DEPTH = ../..
|
---|
24 | include $(KBUILD_PATH)/subheader.kmk
|
---|
25 |
|
---|
26 | ifeq ($(KBUILD_HOST),os2)
|
---|
27 | ifdef VBOX_WITH_OS2_ADDITIONS
|
---|
28 | PROGRAMS += VBoxService
|
---|
29 | endif
|
---|
30 | else
|
---|
31 | PROGRAMS += VBoxService
|
---|
32 | endif
|
---|
33 |
|
---|
34 | #
|
---|
35 | # VBoxService.exe
|
---|
36 | #
|
---|
37 | VBoxService_TEMPLATE = VBOXGUESTR3EXE
|
---|
38 | VBoxService_DEFS = VBOXSERVICE_TIMESYNC
|
---|
39 | VBoxService_DEFS.os2 = VBOX_HGCM VBOXSERVICE_CLIPBOARD
|
---|
40 | VBoxService_SOURCES = \
|
---|
41 | VBoxService.cpp \
|
---|
42 | VBoxServiceTimeSync.cpp
|
---|
43 | VBoxService_SOURCES.os2 = \
|
---|
44 | VBoxService-os2.def \
|
---|
45 | VBoxServiceClipboard-os2.cpp
|
---|
46 | VBoxService_LIBS = \
|
---|
47 | $(VBOX_LIB_IPRT_GUEST_R3) \
|
---|
48 | $(VBOX_LIB_VBGL_R3)
|
---|
49 | ## @todo r=bird: Move to the template.
|
---|
50 | VBoxService_LIBS.freebsd = \
|
---|
51 | iconv
|
---|
52 | VBoxService_LIBPATH.freebsd = \
|
---|
53 | /usr/local/lib
|
---|
54 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
55 |
|
---|