VirtualBox

source: vbox/trunk/src/VBox/Runtime/Makefile.kmk@ 4015

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

Solaris.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 31.9 KB
Line 
1# $Id: Makefile.kmk 3980 2007-08-02 01:29:24Z vboxsync $
2## @file
3# Makefile for the innotek Portable Runtime (IPRT).
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
22
23DEPTH = ../../..
24include $(PATH_KBUILD)/header.kmk
25
26ifdef VBOX_ADDITIONS_LINUX_ONLY
27 LIBRARIES = RuntimeLnx32GuestR0 RuntimeLnx32GuestR3
28else ifdef VBOX_ADDITIONS_WIN32_ONLY
29 LIBRARIES = RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0
30else ifdef VBOX_ADDITIONS_OS2_ONLY
31 LIBRARIES += RuntimeOS2GuestR0 RuntimeOS2GuestR3 #RuntimeOS2Warp3GuestR0
32else
33 # Build everything.
34 BLDPROGS = uniread
35 LIBRARIES = RuntimeR3 RuntimeR0 RuntimeGC RuntimeEFCPP RuntimeR3NoCRTGCC
36 ifdef VBOX_WITH_VBOXDRV
37 LIBRARIES += RuntimeR0Drv
38 endif
39 ifdef VBOX_WITH_WIN32_ADDITIONS
40 LIBRARIES += RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0
41 endif
42 ifdef VBOX_WITH_LINUX_ADDITIONS
43 LIBRARIES += RuntimeLnx32GuestR3
44 ifdef VBOX_WITH_LINUX_ADDITIONS_32BIT_R0
45 LIBRARIES += RuntimeLnx32GuestR0
46 endif
47 endif
48 ifdef VBOX_WITH_OS2_ADDITIONS
49 LIBRARIES += RuntimeOS2GuestR0 RuntimeOS2GuestR3 #RuntimeOS2Warp3GuestR0
50 endif
51 LIBRARIES.l4= RuntimeR3L4
52 DLLS = VBoxRT
53 OTHER_CLEAN = \
54 $(PATH_TARGET)/errmsgdata.h \
55 $(PATH_TARGET)/errmsgcomdata.h \
56 $(PATH_TARGET)/Doxyfile \
57 $(PATH_TARGET)/Doxyfile.dep \
58 $(PATH_TARGET)/docs.iprt
59
60 SUBDIRS_AFTER = testcase
61endif
62
63
64# global (for now at least)
65INCS += include
66
67ifneq ($(wildcard ./kLdr/kLdrModMachO.c),)
68 ifeq ($(filter-out darwin win os2,$(BUILD_TARGET)),)
69 IPRT_WITH_KLDR=1
70 IPRT_PATH_KLDR=./kLdr
71 endif
72endif
73
74#
75# Unicode Specification reader used to regenerate unidata.cpp.
76#
77uniread_TEMPLATE = VBOXBLDPROG
78uniread_SOURCES = uniread.cpp
79
80#
81# Win64 assembly sources.
82#
83RuntimeWin64ASM_SOURCES = \
84 win64/ASMAtomicBitClear.asm \
85 win64/ASMAtomicBitTestAndToggle.asm \
86 win64/ASMAtomicBitToggle.asm \
87 win64/ASMAtomicReadU64.asm \
88 win64/ASMAtomicXchgU16.asm \
89 win64/ASMAtomicXchgU8.asm \
90 win64/ASMBitFirstClear.asm \
91 win64/ASMBitFirstSet.asm \
92 win64/ASMGetCS.asm \
93 win64/ASMGetDS.asm \
94 win64/ASMGetES.asm \
95 win64/ASMGetFlags.asm \
96 win64/ASMGetFS.asm \
97 win64/ASMGetGS.asm \
98 win64/ASMGetIDTR.asm \
99 win64/ASMGetGDTR.asm \
100 win64/ASMGetTR.asm \
101 win64/ASMGetSS.asm \
102 win64/ASMProbeReadByte.asm \
103 win64/ASMSetFlags.asm \
104 win64/ASMGetDR0.asm \
105 win64/ASMGetDR1.asm \
106 win64/ASMGetDR2.asm \
107 win64/ASMGetDR3.asm \
108 win64/ASMGetDR6.asm \
109 win64/ASMGetDR7.asm \
110 win64/ASMMultU64ByU32DivByU32.asm \
111
112#
113# RuntimeR3 - Static Runtime for Ring-3 executables.
114#
115RuntimeR3_TEMPLATE = VBOXR3EXE
116RuntimeR3_SDKS.win = WINPSDK W2K3DDK
117RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
118ifdef IPRT_WITH_KLDR
119 RuntimeR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
120 RuntimeR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
121endif
122ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated
123 RuntimeR3_DEFS += RTCRITSECT_STRICT
124endif
125RuntimeR3_INCS = \
126 $(PATH_ROOT)/src/libs/liblzf-1.51
127ifdef IPRT_WITH_KLDR
128 RuntimeR3_INCS += \
129 $(IPRT_PATH_KLDR)
130endif
131RuntimeR3_INCS.l4 = \
132 $(L4_INCDIR)
133# for iconv.h
134RuntimeR3_INCS.freebsd = \
135 /usr/local/include
136
137
138# RuntimeR3_INCS.solaris = \
139# /usr/include
140
141RuntimeR3_SOURCES = \
142 misc/sanity-cpp.cpp \
143 misc/sanity-c.c \
144 alloc.cpp \
145 alloc/heapsimple.cpp \
146 assert.cpp \
147 table/avlhcphys.cpp \
148 table/avlgcptr.cpp \
149 table/avlogcphys.cpp \
150 table/avlogcptr.cpp \
151 table/avlohcphys.cpp \
152 table/avloioport.cpp \
153 table/avlpv.cpp \
154 table/avlrgcptr.cpp \
155 table/avlrogcphys.cpp \
156 table/avlrogcptr.cpp \
157 table/avlroogcptr.cpp \
158 table/avlroioport.cpp \
159 table/avlu32.cpp \
160 table/avlul.cpp \
161 table/table.cpp \
162 crc32.cpp \
163 crc64.cpp \
164 dir.cpp \
165 errmsg.cpp \
166 fileio.cpp \
167 fs.cpp \
168 generic/critsect-generic.cpp \
169 generic/RTFileCopy-generic.cpp \
170 generic/RTLogWriteStdErr-generic.cpp \
171 generic/RTLogWriteStdOut-generic.cpp \
172 generic/RTLogWriteUser-generic.cpp \
173 generic/semfastmutex-generic.cpp \
174 generic/spinlock-generic.cpp \
175 ldr.cpp \
176 ldrFile.cpp \
177 ldrNative.cpp \
178 ldrELF.cpp \
179 ldrEx.cpp \
180 ldrPE.cpp \
181 log.cpp \
182 logcom.cpp \
183 logformat.cpp \
184 md5.cpp \
185 path.cpp \
186 req.cpp \
187 r3/alloc-ef.cpp \
188 r3/alloc.cpp \
189 r3/init.cpp \
190 r3/process.cpp \
191 r3/stream.cpp \
192 r3/tcp.cpp \
193 RTErrConvertFromErrno.cpp \
194 semspingpong.cpp \
195 straprintf.cpp \
196 strformat.cpp \
197 strformatrt.cpp \
198 string.cpp \
199 strprintf.cpp \
200 strspace.cpp \
201 strstrip.cpp \
202 strtonum.cpp \
203 thread.cpp \
204 time.cpp \
205 timeprog.cpp \
206 uni.cpp \
207 unidata.cpp \
208 utf-16.cpp \
209 utf-8.cpp \
210 zip.cpp \
211 misc/rand.cpp \
212
213ifdef IPRT_WITH_KLDR
214 RuntimeR3_SOURCES += \
215 ldrkLdr.cpp \
216 $(IPRT_PATH_KLDR)/kLdrMod.c \
217 $(IPRT_PATH_KLDR)/kLdrModLX.c \
218 $(IPRT_PATH_KLDR)/kLdrModPE.c \
219 $(IPRT_PATH_KLDR)/kLdrModMachO.c \
220 $(IPRT_PATH_KLDR)/kLdrModNative.c \
221 $(IPRT_PATH_KLDR)/kLdrMisc.c \
222 $(IPRT_PATH_KLDR)/kLdrRdr.c \
223 $(IPRT_PATH_KLDR)/kLdrHlpStr.c
224# We Implement these using IPRT facilities.
225# $(IPRT_PATH_KLDR)/kLdrHlp.c \
226# $(IPRT_PATH_KLDR)/kLdrHlpHeap.c \
227# $(IPRT_PATH_KLDR)/kLdrHlpSem.c \
228# $(IPRT_PATH_KLDR)/kLdrHlpMem.c \
229# $(IPRT_PATH_KLDR)/kLdrHlpPath.c
230
231endif
232
233# VBox specific stuff.
234RuntimeR3_SOURCES += \
235 VBox/strformat-vbox.cpp \
236 VBox/RTAssertDoBreakpoint-vbox.cpp \
237 VBox/log-vbox.cpp
238
239RuntimeR3_SOURCES.win = \
240 generic/RTDirQueryInfo-generic.cpp \
241 generic/RTDirSetTimes-generic.cpp \
242 generic/semsrw-generic.cpp \
243 generic/semnoint-generic.cpp \
244 generic/rand-stubs-generic.cpp \
245 nt/RTErrConvertFromNtStatus.cpp \
246 win32/errmsgwin.cpp \
247 r3/posix/env-posix.cpp \
248 r3/win32/alloc-win32.cpp \
249 r3/win32/dir-win32.cpp \
250 r3/win32/fileio-win32.cpp \
251 r3/win32/fs-win32.cpp \
252 r3/win32/ldrNative-win32.cpp \
253 r3/win32/path-win32.cpp \
254 r3/win32/process-win32.cpp \
255 r3/win32/RTLogWriteDebugger-win32.cpp \
256 r3/win32/sched-win32.cpp \
257 r3/win32/sems-win32.cpp \
258 r3/win32/system-win32.cpp \
259 r3/win32/thread-win32.cpp \
260 r3/win32/time-win32.cpp \
261 r3/win32/timer-win32.cpp \
262 r3/win32/utf16locale-win32.cpp \
263 r3/win32/utf8-win32.cpp \
264 r3/win32/uuid-win32.cpp \
265 timesup.cpp \
266 win32/RTErrConvertFromWin32.cpp
267
268RuntimeR3_SOURCES.win.amd64 = \
269 $(RuntimeWin64ASM_SOURCES)
270
271RuntimeR3_SOURCES.linux = \
272 generic/RTDirQueryInfo-generic.cpp \
273 generic/RTDirSetTimes-generic.cpp \
274 generic/RTFileMove-generic.cpp \
275 generic/RTLogWriteDebugger-generic.cpp \
276 generic/RTTimeLocalNow-generic.cpp \
277 generic/RTTimerCreate-generic.cpp \
278 r3/posix/RTTimeNow-posix.cpp \
279 r3/posix/alloc-posix.cpp \
280 r3/posix/dir-posix.cpp \
281 r3/posix/env-posix.cpp \
282 r3/posix/fileio-posix.cpp \
283 r3/posix/filelock-posix.cpp \
284 r3/posix/fs-posix.cpp \
285 r3/posix/ldrNative-posix.cpp \
286 r3/posix/path-posix.cpp \
287 generic/pathhost-generic.cpp \
288 r3/posix/process-posix.cpp \
289 r3/posix/rand-posix.cpp \
290 r3/posix/system-posix.cpp \
291 r3/linux/sched-linux.cpp \
292 r3/posix/thread-posix.cpp \
293 r3/linux/time-linux.cpp \
294 r3/posix/timelocal-posix.cpp \
295 r3/posix/timer-posix.cpp \
296 generic/utf16locale-generic.cpp \
297 r3/posix/utf8-posix.cpp \
298 generic/uuid-generic.cpp \
299 timesup.cpp
300ifeq ($(BUILD_TARGET_ARCH),amd64)
301 RuntimeR3_SOURCES.linux += r3/linux/sems-linux.cpp
302else
303 RuntimeR3_SOURCES.linux += r3/posix/sems-posix.cpp
304endif
305
306RuntimeR3_SOURCES.os2 = \
307 generic/RTDirQueryInfo-generic.cpp \
308 generic/RTDirSetTimes-generic.cpp \
309 generic/RTFileMove-generic.cpp \
310 generic/RTLogWriteDebugger-generic.cpp \
311 generic/RTTimeLocalNow-generic.cpp \
312 generic/RTTimerCreate-generic.cpp \
313 os2/RTErrConvertFromOS2.cpp \
314 r3/os2/sems-os2.cpp \
315 r3/os2/system-os2.cpp \
316 r3/os2/thread-os2.cpp \
317 r3/posix/alloc-posix.cpp \
318 r3/posix/dir-posix.cpp \
319 r3/posix/env-posix.cpp \
320 r3/posix/fileio-posix.cpp \
321 r3/posix/filelock-posix.cpp \
322 r3/posix/fs-posix.cpp \
323 r3/posix/ldrNative-posix.cpp \
324 r3/posix/path-posix.cpp \
325 generic/pathhost-generic.cpp \
326 r3/posix/process-posix.cpp \
327 generic/rand-stubs-generic.cpp \
328 generic/semsrw-generic.cpp \
329 generic/semnoint-generic.cpp \
330 generic/sched-generic.cpp \
331 r3/os2/time-os2.cpp \
332 r3/posix/timelocal-posix.cpp \
333 generic/timer-generic.cpp \
334 r3/posix/RTTimeNow-posix.cpp \
335 generic/utf16locale-generic.cpp \
336 r3/posix/utf8-posix.cpp \
337 generic/uuid-generic.cpp \
338 timesup.cpp \
339
340RuntimeR3_SOURCES.darwin = \
341 darwin/RTErrConvertFromDarwinCOM.cpp \
342 darwin/RTErrConvertFromDarwinIO.cpp \
343 darwin/RTErrConvertFromDarwinKern.cpp \
344 generic/RTDirQueryInfo-generic.cpp \
345 generic/RTDirSetTimes-generic.cpp \
346 generic/RTFileMove-generic.cpp \
347 generic/RTLogWriteDebugger-generic.cpp \
348 generic/RTTimeLocalNow-generic.cpp \
349 generic/RTTimerCreate-generic.cpp \
350 generic/pathhost-generic.cpp \
351 generic/sched-generic.cpp \
352 generic/timer-generic.cpp \
353 generic/utf16locale-generic.cpp \
354 generic/uuid-generic.cpp\
355 r3/darwin/alloc-darwin.cpp \
356 r3/posix/dir-posix.cpp \
357 r3/posix/env-posix.cpp \
358 r3/posix/fileio-posix.cpp \
359 r3/darwin/filelock-darwin.cpp \
360 r3/posix/fs-posix.cpp \
361 r3/posix/ldrNative-posix.cpp \
362 r3/posix/path-posix.cpp \
363 r3/posix/process-posix.cpp \
364 r3/posix/rand-posix.cpp \
365 r3/posix/sems-posix.cpp \
366 r3/posix/system-posix.cpp \
367 r3/posix/thread-posix.cpp \
368 r3/darwin/time-darwin.cpp \
369 r3/posix/timelocal-posix.cpp \
370 r3/posix/utf8-posix.cpp \
371 timesup.cpp \
372
373## @todo Make BSD sched.
374RuntimeR3_SOURCES.freebsd = \
375 generic/RTDirQueryInfo-generic.cpp \
376 generic/RTDirSetTimes-generic.cpp \
377 generic/RTFileMove-generic.cpp \
378 generic/RTLogWriteDebugger-generic.cpp \
379 generic/RTTimerCreate-generic.cpp \
380 generic/pathhost-generic.cpp \
381 generic/sched-generic.cpp \
382 generic/uuid-generic.cpp \
383 r3/freebsd/alloc-freebsd.cpp \
384 r3/posix/dir-posix.cpp \
385 r3/posix/env-posix.cpp \
386 r3/posix/fileio-posix.cpp \
387 r3/posix/filelock-posix.cpp \
388 r3/posix/fs-posix.cpp \
389 r3/posix/ldrNative-posix.cpp \
390 r3/posix/path-posix.cpp \
391 r3/posix/process-posix.cpp \
392 r3/posix/rand-posix.cpp \
393 r3/posix/sems-posix.cpp \
394 r3/posix/system-posix.cpp \
395 r3/posix/thread-posix.cpp \
396 r3/posix/time-posix.cpp \
397 r3/posix/timelocal-posix.cpp \
398 r3/posix/timer-posix.cpp \
399 r3/posix/RTTimeNow-posix.cpp \
400 generic/utf16locale-generic.cpp \
401 r3/posix/utf8-posix.cpp \
402 timesup.cpp \
403
404RuntimeR3_SOURCES.solaris = \
405 generic/RTDirQueryInfo-generic.cpp \
406 generic/RTDirSetTimes-generic.cpp \
407 generic/RTFileMove-generic.cpp \
408 generic/RTLogWriteDebugger-generic.cpp \
409 generic/RTTimeLocalNow-generic.cpp \
410 generic/RTTimerCreate-generic.cpp \
411 generic/pathhost-generic.cpp \
412 generic/sched-generic.cpp \
413 generic/uuid-generic.cpp \
414 r3/solaris/alloc-solaris.cpp \
415 r3/posix/dir-posix.cpp \
416 r3/posix/env-posix.cpp \
417 r3/posix/fileio-posix.cpp \
418 r3/posix/filelock-posix.cpp \
419 r3/posix/fs-posix.cpp \
420 r3/posix/ldrNative-posix.cpp \
421 r3/posix/path-posix.cpp \
422 r3/posix/process-posix.cpp \
423 r3/posix/rand-posix.cpp \
424 r3/posix/sems-posix.cpp \
425 r3/posix/system-posix.cpp \
426 r3/posix/thread-posix.cpp \
427 r3/posix/time-posix.cpp \
428 r3/posix/timelocal-posix.cpp \
429 r3/posix/timer-posix.cpp \
430 r3/posix/RTTimeNow-posix.cpp \
431 generic/utf16locale-generic.cpp \
432 r3/posix/utf8-posix.cpp \
433 timesup.cpp \
434
435
436## PORTME: Porters add their selection of platform specific files for Ring-3 here.
437
438
439#
440# L4 RuntimeR3 subtarget since L4 headers won't work with VBOXR3.
441#
442RuntimeR3L4_TEMPLATE = VBOXR3NP
443RuntimeR3L4_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF LDR_WITH_PE
444ifneq ($(BUILD_TARGET_ARCH),amd64)
445RuntimeR3L4_DEFS += __PIC__
446endif
447RuntimeR3L4_INCS = $(L4_INCDIR)
448
449RuntimeR3L4_SOURCES = \
450 generic/RTDirQueryInfo-generic.cpp \
451 generic/RTDirSetTimes-generic.cpp \
452 generic/RTFileMove-generic.cpp \
453 generic/RTLogWriteDebugger-generic.cpp \
454 generic/RTTimeLocalNow-generic.cpp \
455 generic/fs-stubs-generic.cpp \
456 generic/pathhost-generic.cpp \
457 generic/sched-generic.cpp \
458 generic/semsrw-generic.cpp \
459 generic/semnoint-generic.cpp \
460 generic/uuid-generic.cpp \
461 l4/l4-errno.cpp \
462 l4/process-l4env.cpp \
463 l4/sems-l4env.cpp \
464 l4/system-l4env.cpp \
465 l4/thread-l4env.cpp \
466 l4/timer-l4env.cpp \
467 generic/utf16locale-generic.cpp \
468 l4/utf8-l4env.cpp \
469 r3/posix/alloc-posix.cpp \
470 r3/posix/env-posix.cpp \
471 r3/posix/dir-posix.cpp \
472 r3/posix/fileio-posix.cpp \
473 r3/posix/filelock-posix.cpp \
474 r3/posix/ldrNative-posix.cpp \
475 r3/posix/path-posix.cpp \
476 r3/posix/rand-posix.cpp \
477 r3/posix/time-posix.cpp \
478 r3/posix/timelocal-posix.cpp \
479 r3/posix/RTTimeNow-posix.cpp \
480 timesup.cpp
481
482#
483# RuntimeW32GuestR3 - Win32 guest program runtime.
484#
485RuntimeW32GuestR3_TEMPLATE = VBOXW32GUESTR3LIB
486RuntimeW32GuestR3_SDKS = WINPSDK W2K3DDK
487RuntimeW32GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
488ifdef IPRT_WITH_KLDR
489 RuntimeW32GuestR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
490 RuntimeW32GuestR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
491endif
492RuntimeW32GuestR3_SOURCES = $(RuntimeR3_SOURCES.win) $(RuntimeR3_SOURCES)
493RuntimeW32GuestR3_INCS = $(RuntimeR3_INCS.win) $(RuntimeR3_INCS)
494
495
496#
497# RuntimeLnx32GuestR3 - 32-bit Linux guest program runtime.
498#
499RuntimeLnx32GuestR3_TEMPLATE = VBOXLNX32GUESTR3LIB
500RuntimeLnx32GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
501ifdef IPRT_WITH_KLDR
502 RuntimeLnx32GuestR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
503 RuntimeLnx32GuestR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
504endif
505RuntimeLnx32GuestR3_SOURCES = $(RuntimeR3_SOURCES.linux) $(RuntimeR3_SOURCES)
506RuntimeLnx32GuestR3_INCS = $(RuntimeR3_INCS.linux) $(RuntimeR3_INCS)
507
508
509#
510# RuntimeOS2GuestR3 - OS/2 guest program runtime.
511#
512RuntimeOS2GuestR3_TEMPLATE = VBOXOS2GUESTR3LIB
513RuntimeOS2GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
514ifdef IPRT_WITH_KLDR
515 RuntimeOS2GuestR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
516 RuntimeOS2GuestR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
517endif
518RuntimeOS2GuestR3_SOURCES = $(RuntimeR3_SOURCES.os2) $(RuntimeR3_SOURCES)
519RuntimeOS2GuestR3_INCS = $(RuntimeR3_INCS.os2) $(RuntimeR3_INCS)
520
521
522#
523# VBoxRT - Shared Object / DLL version.
524#
525VBoxRT_TEMPLATE = VBOXR3
526VBoxRT_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
527ifeq ($(BUILD_TARGET),darwin)
528VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
529endif
530VBoxRT_DEFS = $(RuntimeR3_DEFS) IN_SUP_R3 IN_SUP_R3
531VBoxRT_DEFS.$(BUILD_TYPE) = $(RuntimeR3_DEFS.$(BUILD_TYPE))
532VBoxRT_SOURCES = \
533 VBox/VBoxRTDeps.cpp \
534 $(RuntimeR3_SOURCES)
535VBoxRT_SOURCES.$(BUILD_TARGET) = $(RuntimeR3_SOURCES.$(BUILD_TARGET))
536VBoxRT_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
537VBoxRT_SOURCES.win += r3/win32/dllmain-win32.cpp
538VBoxRT_SOURCES.win.amd64 += r3/win64/VBoxRT-win64.def
539VBoxRT_INCS = $(RuntimeR3_INCS)
540VBoxRT_INCS.$(BUILD_TARGET) = $(RuntimeR3_INCS.$(BUILD_TARGET))
541VBoxRT_INCS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) = $(RuntimeR3_INCS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
542VBoxRT_LIBS = \
543 $(PATH_LIB)/SUPR3$(VBOX_SUFF_LIB) \
544 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB)
545VBoxRT_LIBS.darwin = \
546 iconv
547VBoxRT_LIBS.freebsd = \
548 iconv
549VBoxRT_LIBPATH.freebsd = \
550 /usr/local/lib
551VBoxRT_LDFLAGS.darwin = -framework IOKit -install_name @executable_path/VBoxRT.dylib
552ifdef VBOX_USE_VCC80
553VBoxRT_LDFLAGS.win = /MANIFEST
554endif
555VBoxRT_LDFLAGS.l4 = \
556 -Wl,-whole-archive \
557 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB) \
558 -Wl,-no-whole-archive
559ifeq ($(BUILD_TARGET),l4)
560VBoxRT_LIBS += \
561 $(L4_LIBDIR)/libl4sys.a \
562 $(L4_LIBDIR)/libl4sys.p.a
563endif
564VBoxRT_LIBS.l4 = \
565 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB)
566
567
568#
569# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
570# This is used together with VBoxRT.
571#
572RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC
573RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
574RuntimeR3NoCRTGCC_SOURCES = \
575 misc/sanity-cpp.cpp \
576 misc/sanity-c.c \
577 \
578 math/ceill.asm \
579 math/cosl.asm \
580 math/fabs.asm \
581 math/fabsf.asm \
582 math/fabsl.asm \
583 math/floor.asm \
584 math/floorf.asm \
585 math/floorl.asm \
586 math/ldexpl.asm \
587 math/llrint.asm \
588 math/llrintf.asm \
589 math/llrintl.asm \
590 math/logl.asm \
591 math/lrint.asm \
592 math/lrintf.asm \
593 math/lrintl.asm \
594 math/remainder.asm \
595 math/remainderf.asm \
596 math/remainderl.asm \
597 math/sinl.asm \
598 math/tanl.asm \
599 math/trunc.asm \
600 math/truncf.asm \
601 math/truncl.asm \
602 \
603 misc/setjmp.asm \
604 \
605 string/memchr.asm \
606 string/memchr_alias.c \
607 string/memcmp.asm \
608 string/memcmp_alias.c \
609 string/memcpy.asm \
610 string/memcpy_alias.c \
611 string/mempcpy.asm \
612 string/memset.asm \
613 string/memset_alias.c \
614 string/strchr.asm \
615 string/strchr_alias.c \
616 string/strcmp.asm \
617 string/strcmp_alias.c
618
619RuntimeR3NoCRTGCC_SOURCES.x86 = \
620 math/x86/fenv-x86.c \
621 math/gcc/adddi3.c \
622 math/gcc/anddi3.c \
623 math/gcc/ashldi3.c \
624 math/gcc/ashrdi3.c \
625 math/gcc/cmpdi2.c \
626 math/gcc/divdi3.c \
627 math/gcc/iordi3.c \
628 math/gcc/lshldi3.c \
629 math/gcc/lshrdi3.c \
630 math/gcc/moddi3.c \
631 math/gcc/muldi3.c \
632 math/gcc/negdi2.c \
633 math/gcc/notdi2.c \
634 math/gcc/qdivrem.c \
635 math/gcc/subdi3.c \
636 math/gcc/ucmpdi2.c \
637 math/gcc/udivdi3.c \
638 math/gcc/umoddi3.c \
639 math/gcc/xordi3.c
640
641
642## @todo stop using the old memcpy.c and memset.c code.
643
644#
645# RuntimeR0 - Ring0 library for VMMR0.
646#
647RuntimeR0_TEMPLATE = VBOXR0
648RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX
649RuntimeR0_SOURCES = \
650 misc/sanity-cpp.cpp \
651 misc/sanity-c.c \
652 assert.cpp \
653 generic/RTAssertDoBreakpoint-generic.cpp \
654 table/avlhcphys.cpp \
655 table/avlgcptr.cpp \
656 table/avlogcphys.cpp \
657 table/avlohcphys.cpp \
658 table/avlpv.cpp \
659 table/avlrogcphys.cpp \
660 table/avlogcptr.cpp \
661 table/avlrogcptr.cpp \
662 table/avlroogcptr.cpp \
663 table/avloioport.cpp \
664 table/avlroioport.cpp \
665 logcom.cpp \
666 logformat.cpp \
667 strformat.cpp \
668 strformatrt.cpp \
669 strprintf.cpp \
670 string/memchr.cpp \
671 string/memcmp.cpp \
672 string/memcpy.cpp \
673 string/memset.cpp \
674 string/strcpy.cpp \
675 string/strlen.cpp \
676 string/strncmp.cpp \
677 string/strpbrk.cpp \
678 VBox/strformat-vbox.cpp \
679 timesup.cpp
680
681RuntimeR0_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
682
683RuntimeR0_SOURCES.os2 = \
684 os2/RTErrConvertFromOS2.cpp \
685 os2/sys0.asm
686
687RuntimeR0_SOURCES.darwin.x86 = \
688 math/gcc/adddi3.c \
689 math/gcc/anddi3.c \
690 math/gcc/ashldi3.c \
691 math/gcc/ashrdi3.c \
692 math/gcc/cmpdi2.c \
693 math/gcc/divdi3.c \
694 math/gcc/iordi3.c \
695 math/gcc/lshldi3.c \
696 math/gcc/lshrdi3.c \
697 math/gcc/moddi3.c \
698 math/gcc/muldi3.c \
699 math/gcc/negdi2.c \
700 math/gcc/notdi2.c \
701 math/gcc/qdivrem.c \
702 math/gcc/subdi3.c \
703 math/gcc/ucmpdi2.c \
704 math/gcc/udivdi3.c \
705 math/gcc/umoddi3.c \
706 math/gcc/xordi3.c
707
708
709string/memchr.cpp_CXXFLAGS.win = -Oi-
710string/memcmp.cpp_CXXFLAGS.win = -Oi-
711string/memcpy.cpp_CXXFLAGS.win = -Oi-
712string/memset.cpp_CXXFLAGS.win = -Oi-
713string/strcpy.cpp_CXXFLAGS.win = -Oi-
714string/strlen.cpp_CXXFLAGS.win = -Oi-
715
716ifeq ($(BUILD_TARGET),l4)
717RuntimeR0Drv_BLD_TRG = linux
718RuntimeR0Drv_BLD_TRG_ARCH = x86
719RuntimeR0Drv_BLD_TRG_CPU = i386
720endif
721
722#
723# RuntimeR0Drv - Ring0 library for host drivers.
724#
725RuntimeR0Drv_TEMPLATE = VBOXR0DRV
726RuntimeR0Drv_SDKS.win = W2K3DDK WINPSDKINCS
727RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT)
728RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
729RuntimeR0Drv_DEFS.win = IN_SUP_R0
730RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0 # why is IN_SUP_R0 here? because!
731
732RuntimeR0Drv_INCS.linux = \
733 r0drv/linux
734
735RuntimeR0Drv_SOURCES = \
736 misc/sanity-cpp.cpp \
737 misc/sanity-c.c \
738 assert.cpp \
739 log.cpp \
740 logcom.cpp \
741 logformat.cpp \
742 string/strpbrk.cpp \
743 strformat.cpp \
744 strformatrt.cpp \
745 strtonum.cpp \
746 strprintf.cpp \
747 VBox/strformat-vbox.cpp \
748 r0drv/alloc-r0drv.cpp \
749 r0drv/initterm-r0drv.cpp \
750 generic/RTLogWriteStdErr-stub-generic.cpp \
751 generic/RTLogWriteStdOut-stub-generic.cpp \
752 generic/RTLogWriteUser-generic.cpp \
753 VBox/log-vbox.cpp \
754 table/avlpv.cpp \
755 crc32.cpp \
756 crc64.cpp
757
758RuntimeR0Drv_SOURCES.linux = \
759 generic/RTAssertDoBreakpoint-generic.cpp \
760 alloc/heapsimple.cpp \
761 r0drv/linux/alloc-r0drv-linux.c \
762 r0drv/linux/initterm-r0drv-linux.c \
763 r0drv/linux/process-r0drv-linux.c \
764 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
765 r0drv/linux/semaphore-r0drv-linux.c \
766 r0drv/linux/spinlock-r0drv-linux.c \
767 r0drv/linux/thread-r0drv-linux.c
768
769RuntimeR0Drv_SOURCES.win = \
770 generic/RTAssertDoBreakpoint-generic.cpp \
771 nt/RTErrConvertFromNtStatus.cpp \
772 r0drv/nt/alloc-r0drv-nt.cpp \
773 r0drv/nt/initterm-r0drv-nt.cpp \
774 r0drv/nt/process-r0drv-nt.cpp \
775 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
776 r0drv/nt/semaphore-r0drv-nt.cpp \
777 r0drv/nt/spinlock-r0drv-nt.cpp \
778 r0drv/nt/thread-r0drv-nt.cpp \
779 string/strncmp.cpp
780
781RuntimeR0Drv_SOURCES.win.amd64 = \
782 $(RuntimeWin64ASM_SOURCES)
783
784RuntimeR0Drv_SOURCES.darwin = \
785 darwin/RTErrConvertFromDarwinKern.cpp \
786 darwin/RTErrConvertFromDarwinIO.cpp \
787 generic/RTAssertDoBreakpoint-generic.cpp \
788 generic/RTTimerCreate-generic.cpp \
789 RTErrConvertFromErrno.cpp \
790 string/memchr.asm \
791 r0drv/memobj-r0drv.cpp \
792 r0drv/darwin/alloc-r0drv-darwin.cpp \
793 r0drv/darwin/assert-r0drv-darwin.cpp \
794 r0drv/darwin/memobj-r0drv-darwin.cpp \
795 r0drv/darwin/initterm-r0drv-darwin.cpp \
796 r0drv/darwin/process-r0drv-darwin.cpp \
797 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
798 r0drv/darwin/semaphore-r0drv-darwin.cpp \
799 r0drv/darwin/spinlock-r0drv-darwin.cpp \
800 r0drv/darwin/thread-r0drv-darwin.cpp \
801 r0drv/darwin/thread2-r0drv-darwin.cpp \
802 r0drv/darwin/time-r0drv-darwin.cpp \
803 thread.cpp \
804 generic/timer-generic.cpp
805
806RuntimeR0Drv_DEFS.os2 += RT_WITHOUT_NOCRT_WRAPPERS
807RuntimeR0Drv_SOURCES.os2 = \
808 string/memchr.asm \
809 string/memcmp.asm \
810 string/memcpy.asm \
811 string/mempcpy.asm \
812 string/memset.asm \
813 string/strchr.asm \
814 string/strcmp.asm \
815 \
816 string/strcpy.cpp \
817 string/strlen.cpp \
818 string/strncmp.cpp \
819 \
820 os2/RTErrConvertFromOS2.cpp \
821 os2/sys0.asm \
822 thread.cpp \
823 r0drv/memobj-r0drv.cpp \
824 r0drv/os2/alloc-r0drv-os2.cpp \
825 r0drv/os2/assert-r0drv-os2.cpp \
826 r0drv/os2/assertA-r0drv-os2.asm \
827 r0drv/os2/initterm-r0drv-os2.cpp \
828 r0drv/os2/memobj-r0drv-os2.cpp \
829 r0drv/os2/os2imports.imp \
830 r0drv/os2/process-r0drv-os2.cpp \
831 r0drv/os2/semevent-r0drv-os2.cpp \
832 r0drv/os2/semeventmulti-r0drv-os2.cpp \
833 r0drv/os2/semfastmutex-r0drv-os2.cpp \
834 r0drv/os2/spinlock-r0drv-os2.cpp \
835 r0drv/os2/thread-r0drv-os2.cpp \
836 r0drv/os2/thread2-r0drv-os2.cpp \
837 r0drv/os2/time-r0drv-os2.cpp \
838 r0drv/os2/timer-r0drv-os2.cpp \
839 r0drv/os2/timerA-r0drv-os2.asm \
840 r0drv/os2/RTAssertDoBreakpoint-r0drv-os2.asm \
841 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
842 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
843 generic/RTLogWriteDebugger-generic.cpp
844
845RuntimeR0Drv_SOURCES.freebsd = \
846 generic/RTAssertDoBreakpoint-generic.cpp \
847 generic/RTLogWriteDebugger-generic.cpp \
848 RTErrConvertFromErrno.cpp \
849 string/memchr.asm \
850 r0drv/memobj-r0drv.cpp \
851 thread.cpp \
852 r0drv/freebsd/alloc-r0drv-freebsd.c \
853 r0drv/freebsd/assert-r0drv-freebsd.c \
854 r0drv/freebsd/initterm-r0drv-freebsd.c \
855 r0drv/freebsd/memobj-r0drv-freebsd.c \
856 r0drv/freebsd/process-r0drv-freebsd.c \
857 r0drv/freebsd/semevent-r0drv-freebsd.c \
858 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
859 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
860 r0drv/freebsd/spinlock-r0drv-freebsd.c \
861 r0drv/freebsd/thread-r0drv-freebsd.c \
862 r0drv/freebsd/thread2-r0drv-freebsd.c \
863 r0drv/freebsd/time-r0drv-freebsd.c \
864 r0drv/freebsd/timer-r0drv-freebsd.c \
865 generic/RTTimerCreate-generic.cpp
866
867# SOLARISTODO - Todo for Solaris
868RuntimeR0Drv_SOURCES.solaris = \
869 generic/RTAssertDoBreakpoint-generic.cpp \
870 generic/RTLogWriteDebugger-generic.cpp \
871 RTErrConvertFromErrno.cpp \
872 string/memchr.asm \
873 r0drv/memobj-r0drv.cpp \
874 thread.cpp \
875 r0drv/solaris/alloc-r0drv-solaris.c \
876 r0drv/solaris/assert-r0drv-solaris.c \
877 r0drv/solaris/initterm-r0drv-solaris.c \
878 r0drv/solaris/process-r0drv-solaris.c \
879 r0drv/solaris/semevent-r0drv-solaris.c \
880 r0drv/solaris/semfastmutex-r0drv-solaris.c \
881 r0drv/solaris/spinlock-r0drv-solaris.c \
882 r0drv/solaris/thread-r0drv-solaris.c \
883 r0drv/solaris/thread2-r0drv-solaris.c
884
885## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
886
887#
888# RuntimeW32GuestR0 - Win32 guest driver runtime.
889#
890RuntimeW32GuestR0_TEMPLATE = VBOXW32GUESTR0LIB
891RuntimeW32GuestR0_SDKS = W2K3DDKX86 WINPSDKINCS
892RuntimeW32GuestR0_INCS := $(PATH_SUB_CURRENT)
893RuntimeW32GuestR0_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0
894RuntimeW32GuestR0_SOURCES = \
895 $(filter-out generic/RTLogWriteUser-generic.cpp,$(RuntimeR0Drv_SOURCES)) \
896 $(RuntimeR0Drv_SOURCES.win) \
897 VBox/logbackdoor.cpp
898ifdef VBOX_USE_VCC80
899RuntimeW32GuestR0_SOURCES += \
900 string/memchr.cpp \
901 string/memcmp.cpp \
902 string/memcpy.cpp \
903 string/memset.cpp \
904 string/strlen.cpp
905endif
906
907
908#
909# RuntimeW32NT4GuestR0 - Win32 NT4 guest driver runtime.
910#
911RuntimeW32NT4GuestR0_TEMPLATE = VBOXW32GUESTR0LIB
912RuntimeW32NT4GuestR0_SDKS = $(RuntimeW32GuestR0_SDKS)
913RuntimeW32NT4GuestR0_DEFS = $(RuntimeW32GuestR0_DEFS) IPRT_TARGET_NT4
914RuntimeW32NT4GuestR0_INCS = $(RuntimeW32GuestR0_INCS)
915RuntimeW32NT4GuestR0_SOURCES = $(RuntimeW32GuestR0_SOURCES)
916
917
918#
919# RuntimeLnx32GuestR0 - 32-bit Linux guest driver runtime.
920#
921RuntimeLnx32GuestR0_TEMPLATE = VBOXLNX32GUESTR0
922RuntimeLnx32GuestR0_DEFS = RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0 \
923 MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\)
924RuntimeLnx32GuestR0_INCS = $(RuntimeR0Drv_INCS.linux) $(RuntimeR0Drv_INCS)
925RuntimeLnx32GuestR0_SOURCES = \
926 $(RuntimeR0Drv_SOURCES) \
927 $(RuntimeR0Drv_SOURCES.linux) \
928 VBox/logbackdoor.cpp
929
930
931#
932# RuntimeOS2GuestR0 - OS/2 Warp 4.5 guest driver runtime.
933#
934RuntimeOS2GuestR0_TEMPLATE = VBOXOS2GUESTR0LIB
935RuntimeOS2GuestR0_INCS := $(PATH_SUB_CURRENT)
936RuntimeOS2GuestR0_DEFS = RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
937RuntimeOS2GuestR0_SOURCES = \
938 $(filter-out assert.cpp generic/RTLogWriteUser-generic.cpp,$(RuntimeR0Drv_SOURCES)) \
939 $(RuntimeR0Drv_SOURCES.os2) \
940 VBox/logbackdoor.cpp
941
942
943#
944# RuntimeGC - Guest context library.
945#
946RuntimeGC_TEMPLATE = VBOXGC
947RuntimeGC_DEFS = IN_RT_GC RT_WITH_VBOX
948RuntimeGC_SOURCES = \
949 gc/initterm-gc.cpp \
950 misc/sanity-cpp.cpp \
951 misc/sanity-c.c \
952 table/avlogcphys.cpp \
953 table/avlrogcphys.cpp \
954 table/avlogcptr.cpp \
955 table/avlohcphys.cpp \
956 table/avlrogcptr.cpp \
957 table/avlroogcptr.cpp \
958 table/avloioport.cpp \
959 table/avlroioport.cpp \
960 assert.cpp \
961 generic/RTAssertDoBreakpoint-generic.cpp \
962 log.cpp \
963 logcom.cpp \
964 logformat.cpp \
965 string/strpbrk.cpp \
966 string/strncmp.cpp \
967 strformat.cpp \
968 strformatrt.cpp \
969 strprintf.cpp \
970 VBox/strformat-vbox.cpp \
971 timesup.cpp \
972 timeprog.cpp \
973 string/memchr.cpp \
974 string/memcmp.cpp \
975 string/memcpy.cpp \
976 string/memset.cpp \
977 string/strcpy.cpp \
978 string/strlen.cpp
979
980ifeq ($(VBOX_LDR_FMT32),lx)
981RuntimeGC_SOURCES += os2/sys0.asm
982endif
983
984RuntimeGC_SOURCES.darwin = \
985 math/gcc/adddi3.c \
986 math/gcc/anddi3.c \
987 math/gcc/ashldi3.c \
988 math/gcc/ashrdi3.c \
989 math/gcc/cmpdi2.c \
990 math/gcc/divdi3.c \
991 math/gcc/iordi3.c \
992 math/gcc/lshldi3.c \
993 math/gcc/lshrdi3.c \
994 math/gcc/moddi3.c \
995 math/gcc/muldi3.c \
996 math/gcc/negdi2.c \
997 math/gcc/notdi2.c \
998 math/gcc/qdivrem.c \
999 math/gcc/subdi3.c \
1000 math/gcc/ucmpdi2.c \
1001 math/gcc/udivdi3.c \
1002 math/gcc/umoddi3.c \
1003 math/gcc/xordi3.c
1004
1005
1006#
1007# Static library for new & delete for the electric fence.
1008#
1009RuntimeEFCPP_TEMPLATE = $(RuntimeR3_TEMPLATE)
1010RuntimeEFCPP_SDKS = $(RuntimeR3_SDKS)
1011RuntimeEFCPP_SDKS.$(BUILD_TARGET) = $(RuntimeR3_SDKS.$(BUILD_TARGET))
1012RuntimeEFCPP_DEFS = $(RuntimeR3_DEFS)
1013RuntimeEFCPP_DEFS.$(BUILD_TARGET) = $(RuntimeR3_DEFS.$(BUILD_TARGET))
1014RuntimeEFCPP_INCS = $(RuntimeR3_INCS)
1015RuntimeEFCPP_INCS.$(BUILD_TARGET) = $(RuntimeR3_INCS.$(BUILD_TARGET))
1016RuntimeEFCPP_SOURCES = r3/alloc-ef-cpp.cpp
1017
1018
1019
1020#
1021# errmsg.cpp depends on a generated header.
1022#
1023errmsg.cpp_DEPS = $(PATH_TARGET)/errmsgdata.h
1024errmsg.cpp_INCS = $(PATH_TARGET)
1025
1026win32/errmsgwin.cpp_DEPS = $(PATH_TARGET)/errmsgcomdata.h
1027win32/errmsgwin.cpp_INCS = $(PATH_TARGET)
1028
1029linux/errmsglinux.cpp_DEPS = $(PATH_TARGET)/errmsgxpcomdata.h
1030linux/errmsglinux.cpp_INCS = $(PATH_TARGET)
1031
1032
1033# Generate the rules
1034include $(PATH_KBUILD)/footer.kmk
1035
1036
1037ifneq ($(wildcard /usr/bin/chcon),)
1038# this is needed for testcases executed at build time
1039$(PATH_BIN)/VBoxRT.so:
1040 $(INSTALL) $(out) $@
1041 chcon -t texrel_shlib_t $@ || true
1042endif
1043
1044
1045#
1046# Generate the status code data.
1047#
1048$(PATH_TARGET)/errmsgdata.h: errmsg.sed $(DEPTH)/include/iprt/err.h $(DEPTH)/include/VBox/err.h
1049 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1050 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
1051 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@
1052## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
1053$(PATH_TARGET)/errmsgcomdata.h: errmsgcom.sed $(PATH_SDK_WINPSDK_INC)/WinError.h
1054 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1055 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
1056 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@
1057$(PATH_TARGET)/errmsgxpcomdata.h: errmsgxpcom.sed $(DEPTH)/src/libs/xpcom18a4/xpcom/base/nsError.h
1058 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1059 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
1060 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@
1061
1062
1063#
1064# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
1065#
1066ldrELFRelocatable.cpp.o: ldrELF.o
1067ldrELFRelocatable.cpp.obj: ldrELF.obj
1068
1069
1070#
1071# Doxygen documentation.
1072#
1073DOXYGEN_INPUT_DIRS = \
1074 $(PATH_ROOT)/include/iprt \
1075 $(PATH_ROOT)/include/iprt/nocrt \
1076 $(PATH_ROOT)/include/iprt/nocrt/x86 \
1077 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
1078 include/internal \
1079 string \
1080 table \
1081 $(foreach dir, . r3 r0drv,\
1082 $(dir) \
1083 $(dir)/darwin \
1084 $(dir)/l4 \
1085 $(dir)/linux \
1086 $(dir)/nt \
1087 $(dir)/os2 \
1088 $(dir)/win \
1089 $(dir)/win32 \
1090 $(dir)/win64 \
1091 $(dir)/generic \
1092 )
1093
1094# These must come first in order to make things look nice.
1095DOXYGEN_INPUT_FIRST =\
1096 $(PATH_ROOT)/include/iprt/cdefs.h \
1097 $(PATH_ROOT)/include/iprt/types.h \
1098 $(PATH_ROOT)/include/iprt/runtime.h \
1099 $(PATH_ROOT)/include/iprt/param.h \
1100 $(PATH_ROOT)/include/iprt/assert.h \
1101 $(PATH_ROOT)/include/iprt/asm.h \
1102
1103DOXYGEN_INPUT := \
1104 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(DOXYGEN_INPUT_DIRS)))) ) \
1105 $(foreach dir, $(DOXYGEN_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
1106DOXYGEN_INPUT := \
1107 $(DOXYGEN_INPUT_FIRST) \
1108 $(filter-out $(DOXYGEN_INPUT_FIRST), $(DOXYGEN_INPUT))
1109
1110
1111DOXYGEN_OUTPUT = $(PATH_OUT)/docs/iprt
1112
1113-include $(PATH_TARGET)/Doxyfile.dep
1114
1115# Generate the Doxyfile
1116$(PATH_TARGET)/Doxyfile: Doxyfile \
1117 $(comp-vars DOXYGEN_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
1118 $(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
1119 | $(call DIRDEP, $(PATH_TARGET))
1120 $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.dep
1121 $(CP) -f Doxyfile $@.tmp
1122 $(APPEND) $@.tmp
1123 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(DOXYGEN_OUTPUT)"
1124 $(APPEND) $@.tmp "WARN_LOGFILE = $(DOXYGEN_OUTPUT)/errors"
1125 $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include include . table"
1126 $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
1127 $(APPEND) $@.tmp
1128 $(APPEND) $@.tmp "INPUT = $(DOXYGEN_INPUT)"
1129 $(APPEND) $@.tmp
1130 $(MV) -f $@.tmp $@
1131 @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_OUTPUT_PREV = $(DOXYGEN_OUTPUT)"
1132 @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_INPUT_PREV = $(DOXYGEN_INPUT)"
1133
1134# Create the output directory.
1135$(call DIRDEP, $(DOXYGEN_OUTPUT)):
1136 $(MKDIR) -p $@
1137
1138# Do the actual job.
1139$(PATH_TARGET)/docs.iprt: $(PATH_TARGET)/Doxyfile $(DOXYGEN_INPUT) | $(call DIRDEP, $(DOXYGEN_OUTPUT))
1140 $(RM) -f $(wildcard $(DOXYGEN_OUTPUT)/html/*) $(PATH_TARGET)/docs.iprt
1141 doxygen $(PATH_TARGET)/Doxyfile
1142 $(APPEND) $(PATH_TARGET)/docs.iprt
1143
1144# alias
1145docs: $(PATH_TARGET)/docs.iprt
1146
1147test:
1148 @echo test-$(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
1149 @echo $(DOXYGEN_OUTPUT)
1150 @echo $(DOXYGEN_OUTPUT_PREV)
1151
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