1 | # $Id: Makefile.kmk 41477 2012-05-29 11:43:27Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Shared Clipboard Host Service.
|
---|
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 | # Include sub-makefile(s).
|
---|
22 | include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The shared folder service DLL.
|
---|
26 | #
|
---|
27 | DLLS += VBoxSharedClipboard
|
---|
28 | VBoxSharedClipboard_TEMPLATE = VBOXR3
|
---|
29 | VBoxSharedClipboard_DEFS = VBOX_WITH_HGCM
|
---|
30 | VBoxSharedClipboard_INCS.win = \
|
---|
31 | $(VBOX_PATH_SDK)
|
---|
32 |
|
---|
33 | VBoxSharedClipboard_SOURCES = \
|
---|
34 | service.cpp
|
---|
35 | VBoxSharedClipboard_SOURCES.win = \
|
---|
36 | VBoxClipboard-win.cpp
|
---|
37 | VBoxSharedClipboard_SOURCES.darwin = \
|
---|
38 | darwin.cpp \
|
---|
39 | $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-helper.cpp \
|
---|
40 | darwin-pasteboard.cpp
|
---|
41 | if1of ($(KBUILD_TARGET), linux solaris freebsd) ## @todo X11
|
---|
42 | ifndef VBOX_HEADLESS
|
---|
43 | VBoxSharedClipboard_SOURCES += \
|
---|
44 | $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-helper.cpp \
|
---|
45 | $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp \
|
---|
46 | x11-clipboard.cpp
|
---|
47 | else
|
---|
48 | VBoxSharedClipboard_SOURCES += \
|
---|
49 | x11-stub.cpp
|
---|
50 | endif
|
---|
51 | endif
|
---|
52 |
|
---|
53 | VBoxSharedClipboard_LIBS = \
|
---|
54 | $(LIB_VMM) \
|
---|
55 | $(LIB_RUNTIME) \
|
---|
56 | $(LIB_REM)
|
---|
57 | if1of ($(KBUILD_TARGET), linux solaris freebsd)
|
---|
58 | ifndef VBOX_HEADLESS
|
---|
59 | VBoxSharedClipboard_LIBPATH = \
|
---|
60 | $(VBOX_LIBPATH_X11)
|
---|
61 | VBoxSharedClipboard_LIBS += \
|
---|
62 | Xt \
|
---|
63 | X11
|
---|
64 | endif
|
---|
65 | endif
|
---|
66 |
|
---|
67 | VBoxSharedClipboard_LDFLAGS.darwin = \
|
---|
68 | -framework ApplicationServices -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxSharedClipboard.dylib
|
---|
69 |
|
---|
70 | if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK)
|
---|
71 | if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris)
|
---|
72 | #
|
---|
73 | # Set this in LocalConfig.kmk if you are working on the X11 clipboard service
|
---|
74 | # to automatically run the unit test at build time.
|
---|
75 | # OTHERS += $(tstClipboardX11-2_0_OUTDIR)/tstClipboardX11-2.run
|
---|
76 | PROGRAMS += tstClipboardX11-2
|
---|
77 | TESTING += $(tstClipboardX11-2_0_OUTDIR)/tstClipboardX11-2.run
|
---|
78 | tstClipboardX11-2_TEMPLATE = VBOXR3TSTEXE
|
---|
79 | tstClipboardX11-2_DEFS = VBOX_WITH_HGCM TESTCASE
|
---|
80 | tstClipboardX11-2_SOURCES = x11-clipboard.cpp
|
---|
81 | tstClipboardX11-2_LIBS = $(LIB_RUNTIME)
|
---|
82 | tstClipboardX11-2_CLEANS = $(tstClipboardX11-2_0_OUTDIR)/tstClipboardX11-2.run
|
---|
83 |
|
---|
84 | $$(tstClipboardX11-2_0_OUTDIR)/tstClipboardX11-2.run: $$(tstClipboardX11-2_1_STAGE_TARGET)
|
---|
85 | export VBOX_LOG_DEST=nofile; $(tstClipboardX11-2_1_STAGE_TARGET) quiet
|
---|
86 | $(QUIET)$(APPEND) -t "$@" "done"
|
---|
87 | endif # 1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris)
|
---|
88 | endif
|
---|
89 |
|
---|
90 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|