VirtualBox

source: vbox/trunk/src/VBox/RDP/client/Makefile.kmk@ 41477

Last change on this file since 41477 was 41477, checked in by vboxsync, 12 years ago

/Makefile.kmk: Cosmetic changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.4 KB
Line 
1# $Id: Makefile.kmk 41477 2012-05-29 11:43:27Z vboxsync $
2## @file
3# VBox - rdesktop with VRDP enhancements sub-makefile.
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
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21# Globals
22VBOX_PATH_RDESKTOP_SRC := $(PATH_SUB_CURRENT)
23VBOX_PATH_DEVICES_USB := $(PATH_ROOT)/src/VBox/Devices/USB
24VBOX_PATH_USB_LIB := $(PATH_ROOT)/src/VBox/HostDrivers/VBoxUSB
25VBOX_PATH_MAIN_LINUX := $(PATH_ROOT)/src/VBox/Main/src-server/linux
26VBOX_PATH_MAIN_INCLUDE := $(PATH_ROOT)/src/VBox/Main/include
27VBOX_RDESKTOP_SRC_SUBDIR = rdesktop-1.7.0-vrdp
28
29#
30# The rdesktop-vrdp program.
31#
32PROGRAMS += rdesktop-vrdp
33rdesktop-vrdp_TEMPLATE = VBOXR3NPEXE
34rdesktop-vrdp_SDKS = VBOX_OPENSSL2
35rdesktop-vrdp_DEFS = \
36 PACKAGE_NAME=\"rdesktop-vrdp\" PACKAGE_TARNAME=\"rdesktop-vrdp\" PACKAGE_VERSION=\"1.7.0\" \
37 PACKAGE_STRING=\"rdesktop\ 1.7.0\" PACKAGE_BUGREPORT=\"\" STDC_HEADERS=1 L_ENDIAN=1 \
38 HAVE_SYS_TYPES_H=1 HAVE_SYS_STAT_H=1 HAVE_STDLIB_H=1 HAVE_STRING_H=1 HAVE_MEMORY_H=1 \
39 HAVE_STRINGS_H=1 HAVE_INTTYPES_H=1 HAVE_STDINT_H=1 HAVE_UNISTD_H=1 HAVE_SYS_SELECT_H=1 \
40 HAVE_LOCALE_H=1 HAVE_LANGINFO_H=1 HAVE_ICONV_H=1 \
41 EGD_SOCKET=\"/var/run/egd-pool\" WITH_RDPSND=1 HAVE_DIRENT_H=1 \
42 HAVE_ICONV=1 HAVE_SYS_STATVFS_H=1 \
43 HAVE_SYS_PARAM_H=1 HAVE_SYS_MOUNT_H=1 HAVE_STRUCT_STATVFS_F_NAMEMAX=1 \
44 KEYMAP_PATH=$(if $(findstring RTPATH_APP_PRIVATE,$(DEFS)),RTPATH_APP_PRIVATE,\"/opt/VirtualBox\")\"/rdesktop-vrdp-keymaps\" \
45 RDESKTOP=1
46ifdef WITH_BIRD_VD_HACKS
47 rdesktop-vrdp_DEFS += WITH_BIRD_VD_HACKS
48endif
49
50rdesktop-vrdp_DEFS.linux = \
51 HAVE_MNTENT_H=1 HAVE_SETMNTENT=1 STAT_STATVFS=1 HAVE_SYS_VFS_H=1 HAVE_STRUCT_STATFS_F_NAMELEN=1 \
52 ICONV_CONST= RDPSND_OSS=1 WITH_RDPUSB=1 HAVE_SYS_STATFS_H=1
53# Solaris 10 doesn't have dirfd(), and as thus we go for the low tech solution.
54rdesktop-vrdp_DEFS.linux += \
55 HAVE_DIRFD=1 HAVE_DECL_DIRFD=1 VBOX_USB_WITH_SYSFS=1
56ifdef VBOX_WITH_LINUX_COMPILER_H
57 rdesktop-vrdp_DEFS.linux += VBOX_WITH_LINUX_COMPILER_H
58endif
59# @todo once rdp proxy is available on Solaris, add WITH_RDPUSB=1
60# snv_166+ dirent.h: defines dd_fd only if __USE_LEGACY_PROTOTYPES__ is defined, otherwise uses d_fd, let's just
61# define __USE_LEGACY_PROTOTYPES__ until our buildbox is updated sufficiently
62rdesktop-vrdp_DEFS.solaris = \
63 HAVE_SYS_FILIO_H=1 RDPSND_SUN=1 HAVE_ICONV_H=1 ICONV_CONST= STAT_STATVFS64=1 _FILE_OFFSET_BITS=64 \
64 DIR_FD_MEMBER_NAME=dd_fd __USE_LEGACY_PROTOTYPES__ HAVE_SYS_VFS_H=1 HAVE_SYS_STATFS_H=1
65rdesktop-vrdp_DEFS.freebsd = \
66 RDPSND_OSS=1 HAVE_ICONV_H=1 ICONV_CONST=const HAVE_SYS_STATVFS_H=1 _FILE_OFFSET_BITS=64 HAVE_DIRFD=1
67
68rdesktop-vrdp_SOURCES = \
69 tcp.c \
70 iso.c \
71 mcs.c \
72 secure.c \
73 licence.c \
74 rdp.c \
75 orders.c \
76 bitmap.c \
77 cache.c \
78 rdp5.c \
79 channels.c \
80 rdpdr.c \
81 serial.c \
82 printer.c \
83 disk.c \
84 parallel.c \
85 printercache.c \
86 mppc.c \
87 pstcache.c \
88 lspci.c \
89 seamless.c \
90 ssl.c \
91 rdesktop.c \
92 xwin.c \
93 xkeymap.c \
94 ewmhints.c \
95 xclip.c \
96 cliprdr.c \
97 rdpsnd.c \
98 rdpsnd_dsp.c
99rdesktop-vrdp_SOURCES.linux = \
100 rdpsnd_oss.c \
101 vrdp/rdpusb.c \
102 $(VBOX_PATH_DEVICES_USB)/linux/USBProxyDevice-linux.cpp \
103 $(VBOX_PATH_MAIN_LINUX)/USBGetDevices.cpp \
104 $(VBOX_PATH_USB_LIB)/USBLib.cpp
105rdesktop-vrdp_INCS += \
106 $(VBOX_PATH_RDESKTOP_SRC) \
107 $(VBOX_PATH_RDESKTOP_SRC)/vrdp \
108 $(VBOX_PATH_DEVICES_USB) \
109 $(VBOX_PATH_MAIN_INCLUDE) \
110 $(PATH_ROOT)/include/VBox
111## @todo implement usb proxy for Solaris
112rdesktop-vrdp_SOURCES.solaris = \
113 rdpsnd_sun.c
114rdesktop-vrdp_SOURCES.freebsd = \
115 rdpsnd_oss.c
116rdesktop-vrdp_LIBPATH = \
117 /usr/lib \
118 $(VBOX_LIBPATH_X11)
119rdesktop-vrdp_LIBS = \
120 X11 \
121 $(LIB_RUNTIME)
122rdesktop-vrdp_LIBS.solaris = \
123 nsl
124
125#
126# The keymaps.
127#
128INSTALLS += rdesktop-vrdp-keymaps
129rdesktop-vrdp-keymaps_INST = $(INST_BIN)rdesktop-vrdp-keymaps/
130rdesktop-vrdp-keymaps_MODE = 644
131rdesktop-vrdp-keymaps_DEFPATH := $(PATH_SUB_CURRENT)/keymaps
132rdesktop-vrdp-keymaps_SOURCES = \
133 $(notdir $(wildcard $(VBOX_PATH_RDESKTOP_SRC)/keymaps/*))
134rdesktop-vrdp-keymaps_convert-map_MODE = 755
135
136
137#
138# The source tarball (further down).
139#
140INSTALLS += rdesktop-src
141rdesktop-src_INSTTYPE = stage
142rdesktop-src_INST = misc-staging/$(VBOX_RDESKTOP_SRC_SUBDIR)/
143rdesktop-src_EXEC_SOURCES = \
144 configure \
145 config.sub \
146 config.guess \
147 bootstrap \
148 install-sh \
149 keymaps/convert-map=>keymaps/convert-map
150rdesktop-src_SOURCES = \
151 bitmap.c=>bitmap.c \
152 cache.c=>cache.c \
153 channels.c=>channels.c \
154 cliprdr.c=>cliprdr.c \
155 configure.ac=>configure.ac \
156 constants.h=>constants.h \
157 COPYING=>COPYING \
158 disk.c=>disk.c \
159 disk.h=>disk.h \
160 doc/TODO=>doc/TODO \
161 doc/patches.txt=>doc/patches.txt \
162 doc/ipv6.txt=>doc/ipv6.txt \
163 doc/ChangeLog=>doc/ChangeLog \
164 doc/keymap-names.txt=>doc/keymap-names.txt \
165 doc/HACKING=>doc/HACKING \
166 doc/AUTHORS=>doc/AUTHORS \
167 doc/keymapping.txt=>doc/keymapping.txt \
168 doc/rdesktop.1=>doc/rdesktop.1 \
169 doc/licensing.txt=>doc/licensing.txt \
170 doc/redirection.txt=>doc/redirection.txt \
171 ewmhints.c=>ewmhints.c \
172 iso.c=>iso.c \
173 keymaps/fr-ch=>keymaps/fr-ch \
174 keymaps/lv=>keymaps/lv \
175 keymaps/fr=>keymaps/fr \
176 keymaps/nl=>keymaps/nl \
177 keymaps/no=>keymaps/no \
178 keymaps/da=>keymaps/da \
179 keymaps/lt=>keymaps/lt \
180 keymaps/pl=>keymaps/pl \
181 keymaps/hr=>keymaps/hr \
182 keymaps/he=>keymaps/he \
183 keymaps/ja=>keymaps/ja \
184 keymaps/tr=>keymaps/tr \
185 keymaps/fo=>keymaps/fo \
186 keymaps/de=>keymaps/de \
187 keymaps/fr-be=>keymaps/fr-be \
188 keymaps/is=>keymaps/is \
189 keymaps/ko=>keymaps/ko \
190 keymaps/common=>keymaps/common \
191 keymaps/fi=>keymaps/fi \
192 keymaps/ar=>keymaps/ar \
193 keymaps/cs=>keymaps/cs \
194 keymaps/pt=>keymaps/pt \
195 keymaps/fr-ca=>keymaps/fr-ca \
196 keymaps/en-us=>keymaps/en-us \
197 keymaps/et=>keymaps/et \
198 keymaps/en-dv=>keymaps/en-dv \
199 keymaps/mk=>keymaps/mk \
200 keymaps/nl-be=>keymaps/nl-be \
201 keymaps/th=>keymaps/th \
202 keymaps/pt-br=>keymaps/pt-br \
203 keymaps/ru=>keymaps/ru \
204 keymaps/sv=>keymaps/sv \
205 keymaps/es=>keymaps/es \
206 keymaps/hu=>keymaps/hu \
207 keymaps/modifiers=>keymaps/modifiers \
208 keymaps/en-gb=>keymaps/en-gb \
209 keymaps/de-ch=>keymaps/de-ch \
210 keymaps/sl=>keymaps/sl \
211 keymaps/it=>keymaps/it \
212 licence.c=>licence.c \
213 lspci.c=>lspci.c \
214 Makefile.in=>Makefile.in \
215 mcs.c=>mcs.c \
216 mppc.c=>mppc.c \
217 orders.c=>orders.c \
218 orders.h=>orders.h \
219 parallel.c=>parallel.c \
220 parse.h=>parse.h \
221 printer.c=>printer.c \
222 printercache.c=>printercache.c \
223 proto.h=>proto.h \
224 proto.head=>proto.head \
225 proto.tail=>proto.tail \
226 pstcache.c=>pstcache.c \
227 rdesktop.c=>rdesktop.c \
228 rdesktop.h=>rdesktop.h \
229 rdesktop.spec=>rdesktop.spec \
230 rdp5.c=>rdp5.c \
231 rdp.c=>rdp.c \
232 rdpdr.c=>rdpdr.c \
233 rdpsnd_alsa.c=>rdpsnd_alsa.c \
234 rdpsnd.c=>rdpsnd.c \
235 rdpsnd_dsp.c=>rdpsnd_dsp.c \
236 rdpsnd_dsp.h=>rdpsnd_dsp.h \
237 rdpsnd.h=>rdpsnd.h \
238 rdpsnd_libao.c=>rdpsnd_libao.c \
239 rdpsnd_oss.c=>rdpsnd_oss.c \
240 rdpsnd_sgi.c=>rdpsnd_sgi.c \
241 rdpsnd_sun.c=>rdpsnd_sun.c \
242 README=>README \
243 scancodes.h=>scancodes.h \
244 scard.c=>scard.c \
245 scard.h=>scard.h \
246 seamless.c=>seamless.c \
247 seamless.h=>seamless.h \
248 secure.c=>secure.c \
249 serial.c=>serial.c \
250 ssl.c=>ssl.c \
251 ssl.h=>ssl.h \
252 tcp.c=>tcp.c \
253 types.h=>types.h \
254 vrdp/vrdpusb.h=>vrdp/vrdpusb.h \
255 vrdp/rdpusb.c=>vrdp/rdpusb.c \
256 xclip.c=>xclip.c \
257 xkeymap.c=>xkeymap.c \
258 xproto.h=>xproto.h \
259 xwin.c=>xwin.c \
260 $(PATH_OUT)/product-generated.h=>include/product-generated.h \
261 $(PATH_OUT)/version-generated.h=>include/version-generated.h \
262 $(PATH_OUT)/obj/Runtime/errmsgdata.h=>include/errmsgdata.h \
263 $(PATH_OUT)/obj/Runtime/errmsgvboxcomdata.h=>include/errmsgvboxcomdata.h \
264 $(PATH_ROOT)/include/iprt/alloc.h=>include/iprt/alloc.h \
265 $(PATH_ROOT)/include/iprt/alloca.h=>include/iprt/alloca.h \
266 $(PATH_ROOT)/include/iprt/asm.h=>include/iprt/asm.h \
267 $(PATH_ROOT)/include/iprt/asm-amd64-x86.h=>include/iprt/asm-amd64-x86.h \
268 $(PATH_ROOT)/include/iprt/asm-math.h=>include/iprt/asm-math.h \
269 $(PATH_ROOT)/include/iprt/assert.h=>include/iprt/assert.h \
270 $(PATH_ROOT)/include/iprt/avl.h=>include/iprt/avl.h \
271 $(PATH_ROOT)/include/iprt/cdefs.h=>include/iprt/cdefs.h \
272 $(PATH_ROOT)/include/iprt/cpp/autores.h=>include/iprt/cpp/autores.h \
273 $(PATH_ROOT)/include/iprt/ctype.h=>include/iprt/ctype.h \
274 $(PATH_ROOT)/include/iprt/dir.h=>include/iprt/dir.h \
275 $(PATH_ROOT)/include/iprt/env.h=>include/iprt/env.h \
276 $(PATH_ROOT)/include/iprt/err.h=>include/iprt/err.h \
277 $(PATH_ROOT)/include/iprt/file.h=>include/iprt/file.h \
278 $(PATH_ROOT)/include/iprt/fs.h=>include/iprt/fs.h \
279 $(PATH_ROOT)/include/iprt/linux/sysfs.h=>include/iprt/linux/sysfs.h \
280 $(PATH_ROOT)/include/iprt/list.h=>include/iprt/list.h \
281 $(PATH_ROOT)/include/iprt/log.h=>include/iprt/log.h \
282 $(PATH_ROOT)/include/iprt/mem.h=>include/iprt/mem.h \
283 $(PATH_ROOT)/include/iprt/net.h=>include/iprt/net.h \
284 $(PATH_ROOT)/include/iprt/param.h=>include/iprt/param.h \
285 $(PATH_ROOT)/include/iprt/path.h=>include/iprt/path.h \
286 $(PATH_ROOT)/include/iprt/process.h=>include/iprt/process.h \
287 $(PATH_ROOT)/include/iprt/stdarg.h=>include/iprt/stdarg.h \
288 $(PATH_ROOT)/include/iprt/stdint.h=>include/iprt/stdint.h \
289 $(PATH_ROOT)/include/iprt/stream.h=>include/iprt/stream.h \
290 $(PATH_ROOT)/include/iprt/string.h=>include/iprt/string.h \
291 $(PATH_ROOT)/include/iprt/time.h=>include/iprt/time.h \
292 $(PATH_ROOT)/include/iprt/thread.h=>include/iprt/thread.h \
293 $(PATH_ROOT)/include/iprt/types.h=>include/iprt/types.h \
294 $(PATH_ROOT)/include/iprt/uni.h=>include/iprt/uni.h \
295 $(PATH_ROOT)/include/iprt/x86.h=>include/iprt/x86.h \
296 $(PATH_ROOT)/include/VBox/cdefs.h=>include/VBox/cdefs.h \
297 $(PATH_ROOT)/include/VBox/err.h=>include/VBox/err.h \
298 $(PATH_ROOT)/include/VBox/log.h=>include/VBox/log.h \
299 $(PATH_ROOT)/include/VBox/sup.h=>include/VBox/sup.h \
300 $(PATH_ROOT)/include/VBox/types.h=>include/VBox/types.h \
301 $(PATH_ROOT)/include/VBox/usb.h=>include/VBox/usb.h \
302 $(PATH_ROOT)/include/VBox/usbfilter.h=>include/VBox/usbfilter.h \
303 $(PATH_ROOT)/include/VBox/usblib.h=>include/VBox/usblib.h \
304 $(PATH_ROOT)/include/VBox/version.h=>include/VBox/version.h \
305 $(PATH_ROOT)/include/VBox/vusb.h=>include/VBox/vusb.h \
306 $(PATH_ROOT)/src/VBox/Devices/USB/linux/USBProxyDevice-linux.cpp=>vrdp/linux/USBProxyDevice-linux.cpp \
307 $(PATH_ROOT)/src/VBox/Devices/USB/USBProxyDevice.h=>vrdp/USBProxyDevice.h \
308 $(PATH_ROOT)/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp=>vrdp/USBLib.cpp \
309 $(PATH_ROOT)/src/VBox/Main/include/USBGetDevices.h=>vrdp/USBGetDevices.h \
310 $(PATH_ROOT)/src/VBox/Main/include/vector.h=>vrdp/vector.h \
311 $(PATH_ROOT)/src/VBox/Main/src-server/linux/USBGetDevices.cpp=>vrdp/USBGetDevices.cpp \
312 $(PATH_ROOT)/src/VBox/Runtime/common/alloc/alloc.cpp=>Runtime/common/alloc/alloc.cpp \
313 $(PATH_ROOT)/src/VBox/Runtime/common/err/errmsg.cpp=>Runtime/common/err/errmsg.cpp \
314 $(PATH_ROOT)/src/VBox/Runtime/common/err/errmsgxpcom.cpp=>Runtime/common/err/errmsgxpcom.cpp \
315 $(PATH_ROOT)/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp=>Runtime/common/err/RTErrConvertFromErrno.cpp \
316 $(PATH_ROOT)/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp=>Runtime/common/err/RTErrConvertToErrno.cpp \
317 $(PATH_ROOT)/src/VBox/Runtime/common/path/RTPathAppend.cpp=>Runtime/common/path/RTPathAppend.cpp \
318 $(PATH_ROOT)/src/VBox/Runtime/common/path/RTPathAppendEx.cpp=>Runtime/common/path/RTPathAppendEx.cpp \
319 $(PATH_ROOT)/src/VBox/Runtime/common/path/RTPathCountComponents.cpp=>Runtime/common/path/RTPathCountComponents.cpp \
320 $(PATH_ROOT)/src/VBox/Runtime/common/path/RTPathFilename.cpp=>Runtime/common/path/RTPathFilename.cpp \
321 $(PATH_ROOT)/src/VBox/Runtime/common/path/rtPathRootSpecLen.cpp=>Runtime/common/path/rtPathRootSpecLen.cpp \
322 $(PATH_ROOT)/src/VBox/Runtime/common/path/RTPathStripFilename.cpp=>Runtime/common/path/RTPathStripFilename.cpp \
323 $(PATH_ROOT)/src/VBox/Runtime/common/path/RTPathStripTrailingSlash.cpp=>Runtime/common/path/RTPathStripTrailingSlash.cpp \
324 $(PATH_ROOT)/src/VBox/Runtime/common/path/rtPathVolumeSpecLen.cpp=>Runtime/common/path/rtPathVolumeSpecLen.cpp \
325 $(PATH_ROOT)/src/VBox/Runtime/common/string/RTStrCopy.cpp=>Runtime/common/string/RTStrCopy.cpp \
326 $(PATH_ROOT)/src/VBox/Runtime/common/string/RTStrNLen.cpp=>Runtime/common/string/RTStrNLen.cpp \
327 $(PATH_ROOT)/src/VBox/Runtime/common/string/RTStrCmp.cpp=>Runtime/common/string/RTStrCmp.cpp \
328 $(PATH_ROOT)/src/VBox/Runtime/common/string/RTStrNCmp.cpp=>Runtime/common/string/RTStrNCmp.cpp \
329 $(PATH_ROOT)/src/VBox/Runtime/common/string/straprintf.cpp=>Runtime/common/string/straprintf.cpp \
330 $(PATH_ROOT)/src/VBox/Runtime/common/string/stringalloc.cpp=>Runtime/common/string/stringalloc.cpp \
331 $(PATH_ROOT)/src/VBox/Runtime/common/string/strformat.cpp=>Runtime/common/string/strformat.cpp \
332 $(PATH_ROOT)/src/VBox/Runtime/common/string/strformatrt.cpp=>Runtime/common/string/strformatrt.cpp \
333 $(PATH_ROOT)/src/VBox/Runtime/common/string/strformattype.cpp=>Runtime/common/string/strformattype.cpp \
334 $(PATH_ROOT)/src/VBox/Runtime/common/string/strprintf.cpp=>Runtime/common/string/strprintf.cpp \
335 $(PATH_ROOT)/src/VBox/Runtime/common/string/strstrip.cpp=>Runtime/common/string/strstrip.cpp \
336 $(PATH_ROOT)/src/VBox/Runtime/common/string/strtonum.cpp=>Runtime/common/string/strtonum.cpp \
337 $(PATH_ROOT)/src/VBox/Runtime/common/string/unidata.cpp=>Runtime/common/string/unidata.cpp \
338 $(PATH_ROOT)/src/VBox/Runtime/common/string/utf-16.cpp=>Runtime/common/string/utf-16.cpp \
339 $(PATH_ROOT)/src/VBox/Runtime/common/string/utf-8.cpp=>Runtime/common/string/utf-8.cpp \
340 $(PATH_ROOT)/src/VBox/Runtime/common/string/utf-8-case.cpp=>Runtime/common/string/utf-8-case.cpp \
341 $(PATH_ROOT)/src/VBox/Runtime/common/time/timesysalias.cpp=>Runtime/common/time/timesysalias.cpp \
342 $(PATH_ROOT)/src/VBox/Runtime/generic/pathhost-generic.cpp=>Runtime/generic/pathhost-generic.cpp \
343 $(PATH_ROOT)/src/VBox/Runtime/include/internal/alignmentchecks.h=>include/internal/alignmentchecks.h \
344 $(PATH_ROOT)/src/VBox/Runtime/include/internal/dir.h=>include/internal/dir.h \
345 $(PATH_ROOT)/src/VBox/Runtime/include/internal/file.h=>include/internal/file.h \
346 $(PATH_ROOT)/src/VBox/Runtime/include/internal/fs.h=>include/internal/fs.h \
347 $(PATH_ROOT)/src/VBox/Runtime/include/internal/iprt.h=>include/internal/iprt.h \
348 $(PATH_ROOT)/src/VBox/Runtime/include/internal/magics.h=>include/internal/magics.h \
349 $(PATH_ROOT)/src/VBox/Runtime/include/internal/mem.h=>include/internal/mem.h \
350 $(PATH_ROOT)/src/VBox/Runtime/include/internal/path.h=>include/internal/path.h \
351 $(PATH_ROOT)/src/VBox/Runtime/include/internal/process.h=>include/internal/process.h \
352 $(PATH_ROOT)/src/VBox/Runtime/include/internal/string.h=>include/internal/string.h \
353 $(PATH_ROOT)/src/VBox/Runtime/include/internal/time.h=>include/internal/time.h \
354 $(PATH_ROOT)/src/VBox/Runtime/r3/alloc.cpp=>Runtime/r3/alloc.cpp \
355 $(PATH_ROOT)/src/VBox/Runtime/r3/alloc-ef.h=>Runtime/r3/alloc-ef.h \
356 $(PATH_ROOT)/src/VBox/Runtime/r3/dir.cpp=>Runtime/r3/dir.cpp \
357 $(PATH_ROOT)/src/VBox/Runtime/r3/fileio.cpp=>Runtime/r3/fileio.cpp \
358 $(PATH_ROOT)/src/VBox/Runtime/r3/fs.cpp=>Runtime/r3/fs.cpp \
359 $(PATH_ROOT)/src/VBox/Runtime/r3/linux/sysfs.cpp=>Runtime/r3/linux/sysfs.cpp \
360 $(PATH_ROOT)/src/VBox/Runtime/r3/linux/time-linux.cpp=>Runtime/r3/linux/time-linux.cpp \
361 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/dir-posix.cpp=>Runtime/r3/posix/dir-posix.cpp \
362 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/env-posix.cpp=>Runtime/r3/posix/env-posix.cpp \
363 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/fileio-posix.cpp=>Runtime/r3/posix/fileio-posix.cpp \
364 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/fs2-posix.cpp=>Runtime/r3/posix/fs2-posix.cpp \
365 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/fs3-posix.cpp=>Runtime/r3/posix/fs3-posix.cpp \
366 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/path-posix.cpp=>Runtime/r3/posix/path-posix.cpp \
367 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/path2-posix.cpp=>Runtime/r3/posix/path2-posix.cpp \
368 $(PATH_ROOT)/src/VBox/Runtime/r3/posix/utf8-posix.cpp=>Runtime/r3/posix/utf8-posix.cpp \
369 $(PATH_ROOT)/src/VBox/Runtime/r3/stream.cpp=>Runtime/r3/stream.cpp
370
371INSTALLS += rdesktop-tarball
372rdesktop-tarball_INST = $(INST_BIN)
373rdesktop-tarball_MODE = a+r,u+w
374rdesktop-tarball_SOURCES = $(rdesktop-tarball_0_OUTDIR)/rdesktop-vrdp.tar.gz
375rdesktop-tarball_CLEAN = $(rdesktop-tarball_0_OUTDIR)/rdesktop-vrdp.tar.gz
376$$(rdesktop-tarball_0_OUTDIR)/rdesktop-vrdp.tar.gz: \
377 $$(rdesktop-src_1_TARGET) \
378 | $$(dir $$@)
379 $(call MSG_TOOL,tar/gzip,,$@)
380 $(QUIET)cd $(PATH_STAGE)/$(rdesktop-src_INST).. && tar -cf - $(VBOX_RDESKTOP_SRC_SUBDIR)/ | gzip - > $@
381
382
383include $(FILE_KBUILD_SUB_FOOTER)
384
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