VirtualBox

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

Last change on this file since 38097 was 38097, checked in by vboxsync, 13 years ago

grr

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