VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedClipboard/Makefile.kmk@ 3896

Last change on this file since 3896 was 3896, checked in by vboxsync, 17 years ago

Added a stub Linux host clipboard module which does not link to the X11 libraries

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1# $Id: Makefile.kmk 3896 2007-07-27 07:19:00Z vboxsync $
2## @file
3# Sub-Makefile for the Shared Clipboard Host Service.
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14# distribution. VirtualBox OSE is distributed in the hope that it will
15# be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# If you received this file as part of a commercial VirtualBox
18# distribution, then only the terms of your commercial VirtualBox
19# license agreement apply instead of the previous paragraph.
20#
21
22DEPTH ?= ../../../..
23SUB_DEPTH = ..
24include $(PATH_KBUILD)/subheader.kmk
25
26ifndef VBOX_WITH_VBOXSDL
27 ifndef VBOX_WITH_QTGUI
28 VBOX_HEADLESS=1
29 endif
30endif
31
32#
33# The shared folder service DLL.
34#
35DLLS += VBoxSharedClipboard
36VBoxSharedClipboard_TEMPLATE = VBOXR3
37VBoxSharedClipboard_DEFS = VBOX_HGCM
38VBoxSharedClipboard_INCS.win = \
39 $(VBOX_PATH_SDK)
40
41VBoxSharedClipboard_SOURCES = \
42 service.cpp
43VBoxSharedClipboard_SOURCES.win = \
44 win32.cpp
45ifndef VBOX_HEADLESS
46VBoxSharedClipboard_SOURCES.linux = \
47 linux.cpp
48else
49VBoxSharedClipboard_SOURCES.linux = \
50 linux-stub.cpp
51endif
52
53VBoxSharedClipboard_LIBS = \
54 $(LIB_VMM) \
55 $(LIB_RUNTIME) \
56 $(LIB_REM)
57ifndef VBOX_HEADLESS
58VBoxSharedClipboard_LIBPATH.linux = \
59 $(VBOX_LIBPATH_X11)
60VBoxSharedClipboard_LIBS.linux = \
61 Xt \
62 X11
63endif
64
65include $(PATH_KBUILD)/subfooter.kmk
66
Note: See TracBrowser for help on using the repository browser.

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