VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk@ 36805

Last change on this file since 36805 was 36805, checked in by vboxsync, 14 years ago

Additions/x11/seamless: yet another STL-vector-in-C

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1# $Id: Makefile.kmk 36805 2011-04-21 21:48:52Z vboxsync $
2## @file
3# Sub-Makefile for the VirtualBox Guest Addition X11 Client.
4#
5
6#
7# Copyright (C) 2006-2007 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
18SUB_DEPTH = ../../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# VBoxClient - clipboard and seamless.
23#
24PROGRAMS += VBoxClient
25
26VBoxClient_TEMPLATE = VBOXGUESTR3CPPEXE
27VBoxClient_DEFS += VBOX_X11_CLIPBOARD VBOX_WITH_HGCM
28ifdef VBOX_WITH_DBUS
29 VBoxClient_DEFS += VBOX_WITH_DBUS
30endif
31VBoxClient_DEFS.linux += _GNU_SOURCE
32VBoxClient_SOURCES = \
33 main.cpp
34VBoxClient_SOURCES += \
35 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-helper.cpp \
36 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp \
37 clipboard.cpp
38VBoxClient_LIBPATH = \
39 $(VBOX_LIBPATH32_X11)
40VBoxClient_LIBS.freebsd = \
41 iconv
42VBoxClient_LIBS.linux = \
43 dl
44VBoxClient_LIBS.solaris = \
45 dl
46VBoxClient_LIBS = \
47 $(VBOX_LIB_IPRT_GUEST_R3) \
48 $(VBOX_LIB_VBGL_R3) \
49 $(VBOX_LIB_IPRT_GUEST_R3) \
50 X11 \
51 Xrandr \
52 Xt
53# These are static replacements for gcc-specific parts of libstdc++
54VBoxClient_LIBS += \
55 supc++ \
56 gcc_eh
57ifdef VBOX_X11_SEAMLESS_GUEST
58 VBoxClient_DEFS += SEAMLESS_GUEST DYNAMIC_RESIZE
59 VBoxClient_SOURCES += \
60 seamless.cpp \
61 seamless-host.cpp \
62 seamless-x11.cpp \
63 thread.cpp \
64 display.cpp \
65 hostversion.cpp
66 VBoxClient_LIBS += \
67 Xext Xmu
68endif
69ifdef VBOX_WITH_GUEST_PROPS
70 VBoxClient_DEFS += VBOX_WITH_GUEST_PROPS
71endif
72#
73# Link against libstdc++.a. (http://www.trilithium.com/johan/2005/06/static-libstdc/).
74# (It would've been preferred to avoid features depending on libstdc++, of course...)
75#
76# Actually, this is darn annoying and will *NOT* be tolerated for any new code!
77#
78VBoxClient_LIBPATH += $(VBoxClient_0_OUTDIR)
79VBoxClient_ORDERDEPS = $(VBoxClient_0_OUTDIR)/libstdc++.a
80VBoxClient_CLEAN = $(VBoxClient_0_OUTDIR)/libstdc++.a
81$$(VBoxClient_0_OUTDIR)/libstdc++.a:
82 $(call MSG_L1,Forcing static libstdc++)
83 $(QUIET)$(MKDIR) -p $(@D)
84 $(QUIET)$(LN_EXT) -sf `$(TOOL_$(VBOX_GCC_TOOL)_CXX) $(TEMPLATE_VBOXGUESTR3CPPEXE_CXXFLAGS.$(KBUILD_TARGET_ARCH)) -print-file-name=libstdc++.a` $@ \
85 || $(CP_EXT) -f `$(TOOL_$(VBOX_GCC_TOOL)_CXX) $(TEMPLATE_VBOXGUESTR3CPPEXE_CXXFLAGS.$(KBUILD_TARGET_ARCH)) -print-file-name=libstdc++.a` $@
86
87ifdef VBOX_X11_SEAMLESS_GUEST
88 if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK)
89 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris)
90
91# Set this in LocalConfig.kmk if you are working on the X11 clipboard service
92# to automatically run the unit test at build time.
93# OTHERS += $(tstSeamlessX11-auto_0_OUTDIR)/tstSeamlessX11-auto.run
94
95 PROGRAMS += tstSeamlessX11-auto
96 tstSeamlessX11-auto_TEMPLATE = VBOXR3TSTEXE
97 tstSeamlessX11-auto_SOURCES = \
98 testcase/tstSeamlessX11-auto.cpp \
99 seamless-x11.cpp
100 tstSeamlessX11-auto_DEFS = TESTCASE
101 tstSeamlessX11-auto_LIBS = \
102 $(LIB_RUNTIME)
103
104 TESTING += $(tstSeamlessX11-auto_0_OUTDIR)/tstSeamlessX11-auto
105$$(tstSeamlessX11-auto_0_OUTDIR)/tstSeamlessX11-auto.run: \
106 $$(INSTARGET_tstSeamlessX11-auto)
107 export VBOX_LOG_DEST=nofile; $(INSTARGET_tstSeamlessX11-auto) quiet
108 $(QUIET)$(APPEND) -t "$@" "done"
109
110 PROGRAMS += tstVector
111 tstVector_TEMPLATE = VBOXR3TSTEXE
112 tstVector_SOURCES = \
113 testcase/tstVector.cpp
114 tstVector_INCS = .
115 tstVector_LIBS = \
116 $(LIB_RUNTIME)
117
118 #
119 # Additional testcase designed to be run manually, which initiates and starts the Linux
120 # guest client part of the seamless additions in the host, faking seamless events from
121 # the host and writing information about guest events to standard output.
122 #
123 PROGRAMS += tstSeamlessX11
124 tstSeamlessX11_TEMPLATE = VBOXR3TSTEXE
125 tstSeamlessX11_SOURCES = \
126 testcase/tstSeamlessX11.cpp \
127 seamless-host.cpp \
128 seamless-x11.cpp \
129 thread.cpp
130 tstSeamlessX11_LIBPATH = \
131 $(VBOX_LIBPATH_X11)
132 tstSeamlessX11_LIBS = \
133 $(LIB_RUNTIME) \
134 Xext \
135 Xmu \
136 X11
137 endif
138 endif
139endif
140
141include $(KBUILD_PATH)/subfooter.kmk
142
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette