VirtualBox

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

Last change on this file since 15424 was 15400, checked in by vboxsync, 16 years ago

iprt: new Linux sysfs APIs

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 49.5 KB
Line 
1# $Id: Makefile.kmk 15400 2008-12-12 22:04:00Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT (IPRT).
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27# Clara, CA 95054 USA or visit http://www.sun.com if you need
28# additional information or have any questions.
29#
30
31SUB_DEPTH = ../../..
32include $(KBUILD_PATH)/subheader.kmk
33
34ifdef VBOX_ONLY_ADDITIONS
35 #
36 # Only build the additions, sort out the legacy names first.
37 #
38 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Mini
39 #LIBRARIES.os2 = RuntimeGuestR0OS2Warp3
40 LIBRARIES.win.x86 += RuntimeGuestR0NT4
41 ifndef VBOX_WITH_ADDITION_DRIVERS
42 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.
43 LIBRARIES := $(filter-out RuntimeGuestR0, $(LIBRARIES))
44 endif
45 endif
46
47else ifdef VBOX_ONLY_DOCS
48 #
49 # Build docs only - need just regular R3 runtime.
50 #
51 LIBRARIES += RuntimeR3
52 DLLS += VBoxRT
53
54else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS
55
56 #
57 # Normal build.
58 #
59 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
60
61 BLDPROGS += uniread
62 LIBRARIES += RuntimeR3 RuntimeR0 RuntimeGC RuntimeEFCPP RuntimeR3NoCRTGCC
63 ifdef VBOX_WITH_VBOXDRV
64 LIBRARIES += RuntimeR0Drv
65 endif
66 ifdef VBOX_WITH_ADDITIONS
67 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Mini
68 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
69 LIBRARIES.win.x86 += RuntimeGuestR0NT4
70 ifndef VBOX_WITH_ADDITION_DRIVERS
71 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.
72 LIBRARIES := $(filter-out RuntimeGuestR0, $(LIBRARIES))
73 endif
74 endif
75 endif # VBOX_WITH_ADDITIONS
76 LIBRARIES.l4 += RuntimeR3L4 RuntimeLnxHostR3
77 DLLS += VBoxRT
78endif
79
80# Where the generated stuff goes.
81IPRT_OUT_DIR := $(PATH_TARGET)/Runtime
82BLDDIRS += $(IPRT_OUT_DIR)
83OTHER_CLEAN += \
84 $(IPRT_OUT_DIR)/errmsgdata.h \
85 $(IPRT_OUT_DIR)/errmsgcomdata.h \
86 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \
87 $(IPRT_OUT_DIR)/Doxyfile.iprt \
88 $(IPRT_OUT_DIR)/Doxyfile.iprt.dep \
89 $(IPRT_OUT_DIR)/docs.iprt
90
91
92#
93# Globals
94#
95VBOX_PATH_RUNTIME_SRC := $(PATH_SUB_CURRENT)
96
97
98#
99# Unicode Specification reader used to regenerate unidata.cpp.
100#
101uniread_TEMPLATE = VBOXBLDPROG
102uniread_SOURCES = common/string/uniread.cpp
103uniread_INCS = include
104
105#
106# Win64 assembly sources.
107#
108RuntimeWin64ASM_SOURCES = \
109 win/amd64/ASMAtomicBitClear.asm \
110 win/amd64/ASMAtomicBitTestAndToggle.asm \
111 win/amd64/ASMAtomicBitToggle.asm \
112 win/amd64/ASMAtomicReadU64.asm \
113 win/amd64/ASMAtomicXchgU16.asm \
114 win/amd64/ASMAtomicXchgU8.asm \
115 win/amd64/ASMBitFirstClear.asm \
116 win/amd64/ASMBitFirstSet.asm \
117 win/amd64/ASMGetCS.asm \
118 win/amd64/ASMGetDS.asm \
119 win/amd64/ASMGetES.asm \
120 win/amd64/ASMGetFlags.asm \
121 win/amd64/ASMGetFS.asm \
122 win/amd64/ASMGetGS.asm \
123 win/amd64/ASMGetIDTR.asm \
124 win/amd64/ASMGetGDTR.asm \
125 win/amd64/ASMGetTR.asm \
126 win/amd64/ASMGetSS.asm \
127 win/amd64/ASMProbeReadByte.asm \
128 win/amd64/ASMSetFlags.asm \
129 win/amd64/ASMGetDR0.asm \
130 win/amd64/ASMGetDR1.asm \
131 win/amd64/ASMGetDR2.asm \
132 win/amd64/ASMGetDR3.asm \
133 win/amd64/ASMGetDR6.asm \
134 win/amd64/ASMGetDR7.asm \
135 common/asm/ASMMultU64ByU32DivByU32.asm
136
137#
138# Win32 assembly sources.
139#
140RuntimeWin32ASM_SOURCES = \
141 common/asm/ASMMultU64ByU32DivByU32.asm
142
143#
144# NoCRT sources (minus math stuff).
145#
146RuntimeNoCrt_SOURCES = \
147 common/misc/setjmp.asm \
148 common/string/memchr.asm \
149 common/string/memcmp.asm \
150 common/string/memcpy.asm \
151 common/string/mempcpy.asm \
152 common/string/memmove.asm \
153 common/string/memset.asm \
154 common/string/strchr.asm \
155 common/string/strcpy.asm \
156 common/string/strcmp.asm \
157 common/string/strlen.asm
158
159
160#
161# RuntimeR3 - Static Runtime for Ring-3 executables.
162#
163RuntimeR3_TEMPLATE = VBOXR3EXE
164RuntimeR3_SDKS.win = WINPSDK W2K3DDK
165RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
166ifdef IPRT_WITH_KSTUFF
167 RuntimeR3_DEFS += LDR_WITH_KLDR
168endif
169ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated
170 RuntimeR3_DEFS += RTCRITSECT_STRICT
171endif
172RuntimeR3_INCS = \
173 include \
174 $(PATH_ROOT)/src/libs/liblzf-1.51
175ifdef IPRT_WITH_KSTUFF
176 RuntimeR3_INCS += \
177 $(PATH_ROOT)/src/libs/kStuff/kStuff/include
178endif
179RuntimeR3_INCS.l4 = \
180 $(L4_INCDIR)
181# for iconv.h
182RuntimeR3_INCS.freebsd = \
183 /usr/local/include
184
185
186# RuntimeR3_INCS.solaris = \
187# /usr/include
188
189RuntimeR3_SOURCES = \
190 common/alloc/alloc.cpp \
191 common/alloc/heapsimple.cpp \
192 common/checksum/crc32.cpp \
193 common/checksum/crc64.cpp \
194 common/checksum/md5.cpp \
195 common/checksum/ipv4.cpp \
196 common/err/errmsg.cpp \
197 common/err/RTErrConvertFromErrno.cpp \
198 common/ldr/ldr.cpp \
199 common/ldr/ldrELF.cpp \
200 common/ldr/ldrEx.cpp \
201 common/ldr/ldrFile.cpp \
202 common/ldr/ldrNative.cpp \
203 common/ldr/ldrPE.cpp \
204 common/log/log.cpp \
205 common/log/logellipsis.cpp \
206 common/log/logrel.cpp \
207 common/log/logrelellipsis.cpp \
208 common/log/logcom.cpp \
209 common/log/logformat.cpp \
210 common/misc/assert.cpp \
211 common/misc/cache.cpp \
212 common/misc/cidr.cpp \
213 common/misc/getopt.cpp \
214 common/misc/handletable.cpp \
215 common/misc/handletablectx.cpp \
216 common/misc/handletablesimple.cpp \
217 common/misc/once.cpp \
218 common/misc/req.cpp \
219 common/misc/sanity-c.c \
220 common/misc/sanity-cpp.cpp \
221 common/misc/semspingpong.cpp \
222 common/misc/thread.cpp \
223 common/misc/zip.cpp \
224 common/rand/rand.cpp \
225 common/rand/randadv.cpp \
226 common/rand/randparkmiller.cpp \
227 common/string/RTStrNLen.cpp \
228 common/string/RTStrNLenEx.cpp \
229 common/string/simplepattern.cpp \
230 common/string/straprintf.cpp \
231 common/string/strformat.cpp \
232 common/string/strformatrt.cpp \
233 common/string/strformattype.cpp \
234 common/string/string.cpp \
235 common/string/strprintf.cpp \
236 common/string/strspace.cpp \
237 common/string/strstrip.cpp \
238 common/string/strtonum.cpp \
239 common/string/uni.cpp \
240 common/string/unidata.cpp \
241 common/string/utf-16.cpp \
242 common/string/utf-8.cpp \
243 common/table/avlgcptr.cpp \
244 common/table/avlhcphys.cpp \
245 common/table/avllu32.cpp \
246 common/table/avlou32.cpp \
247 common/table/avlogcphys.cpp \
248 common/table/avlogcptr.cpp \
249 common/table/avlohcphys.cpp \
250 common/table/avloioport.cpp \
251 common/table/avlpv.cpp \
252 common/table/avlrgcptr.cpp \
253 common/table/avlrogcphys.cpp \
254 common/table/avlrogcptr.cpp \
255 common/table/avlroioport.cpp \
256 common/table/avlroogcptr.cpp \
257 common/table/avlu32.cpp \
258 common/table/avlul.cpp \
259 common/table/table.cpp \
260 common/time/time.cpp \
261 common/time/timeprog.cpp \
262 common/time/timesup.cpp \
263 generic/critsect-generic.cpp \
264 generic/env-generic.cpp \
265 generic/RTFileCopy-generic.cpp \
266 generic/RTFileReadAll-generic.cpp \
267 generic/RTFileReadAllEx-generic.cpp \
268 generic/RTFileReadAllByHandle-generic.cpp \
269 generic/RTFileReadAllByHandleEx-generic.cpp \
270 generic/RTFileReadAllFree-generic.cpp \
271 generic/RTLogWriteStdErr-generic.cpp \
272 generic/RTLogWriteStdOut-generic.cpp \
273 generic/RTLogWriteUser-generic.cpp \
274 generic/RTTimerLRCreate-generic.cpp \
275 generic/semfastmutex-generic.cpp \
276 generic/spinlock-generic.cpp \
277 generic/timerlr-generic.cpp \
278 r3/alloc-ef.cpp \
279 r3/alloc.cpp \
280 r3/dir.cpp \
281 r3/fileio.cpp \
282 r3/fs.cpp \
283 r3/init.cpp \
284 r3/path.cpp \
285 r3/process.cpp \
286 r3/stream.cpp \
287 r3/tcp.cpp
288
289#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
290# RuntimeR3_SOURCES += common/time/timesupA.asm
291#else
292 RuntimeR3_SOURCES += common/time/timesupref.cpp
293#endif
294
295ifdef IPRT_WITH_KSTUFF
296 RuntimeR3_SOURCES += \
297 common/ldr/ldrkStuff.cpp
298endif
299
300# VBox specific stuff.
301RuntimeR3_SOURCES += \
302 VBox/strformat-vbox.cpp \
303 VBox/RTAssertShouldPanic-vbox.cpp \
304 VBox/log-vbox.cpp
305ifneq ($(KBUILD_TARGET),win)
306RuntimeR3_SOURCES += \
307 common/err/errmsgxpcom.cpp
308endif
309
310RuntimeR3_SOURCES.win = \
311 generic/RTDirQueryInfo-generic.cpp \
312 generic/RTDirSetTimes-generic.cpp \
313 generic/RTMpGetCurFrequency-generic.cpp \
314 generic/RTMpGetMaxFrequency-generic.cpp \
315 generic/RTRandAdvCreateSystemFaster-generic.cpp \
316 generic/RTRandAdvCreateSystemTruer-generic.cpp \
317 generic/mppresent-generic.cpp \
318 generic/semnoint-generic.cpp \
319 generic/semsrw-generic.cpp \
320 nt/RTErrConvertFromNtStatus.cpp \
321 r3/posix/env-posix.cpp \
322 r3/win/RTSystemQueryOSInfo-win.cpp \
323 r3/win/alloc-win.cpp \
324 r3/win/dir-win.cpp \
325 r3/win/fileio-win.cpp \
326 r3/win/fs-win.cpp \
327 r3/win/ldrNative-win.cpp \
328 r3/win/localipc-win.cpp \
329 r3/win/mp-win.cpp \
330 r3/win/path-win.cpp \
331 r3/win/process-win.cpp \
332 r3/win/RTLogWriteDebugger-win.cpp \
333 r3/win/rtProcInitExePath-win.cpp \
334 r3/win/sched-win.cpp \
335 r3/win/sems-win.cpp \
336 r3/win/thread-win.cpp \
337 r3/win/time-win.cpp \
338 r3/win/timer-win.cpp \
339 r3/win/tls-win.cpp \
340 r3/win/utf16locale-win.cpp \
341 r3/win/utf8-win.cpp \
342 r3/win/uuid-win.cpp \
343 r3/win/RTUuidCreate-win.cpp \
344 win/errmsgwin.cpp \
345 win/RTErrConvertFromWin32.cpp
346
347RuntimeR3_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
348RuntimeR3_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
349
350RuntimeR3_SOURCES.linux = \
351 generic/pathhost-generic.cpp \
352 generic/RTDirQueryInfo-generic.cpp \
353 generic/RTDirSetTimes-generic.cpp \
354 generic/RTFileMove-generic.cpp \
355 generic/RTLogWriteDebugger-generic.cpp \
356 generic/RTTimeLocalNow-generic.cpp \
357 generic/RTTimerCreate-generic.cpp \
358 generic/RTUuidCreate-generic.cpp \
359 generic/mppresent-generic.cpp \
360 generic/utf16locale-generic.cpp \
361 generic/uuid-generic.cpp \
362 r3/linux/mp-linux.cpp \
363 r3/linux/rtProcInitExePath-linux.cpp \
364 r3/linux/sched-linux.cpp \
365 r3/linux/sysfs.cpp \
366 r3/linux/time-linux.cpp \
367 r3/posix/RTSystemQueryOSInfo-posix.cpp \
368 r3/posix/alloc-posix.cpp \
369 r3/posix/dir-posix.cpp \
370 r3/posix/env-posix.cpp \
371 r3/posix/fileio-posix.cpp \
372 r3/posix/filelock-posix.cpp \
373 r3/posix/fs-posix.cpp \
374 r3/posix/ldrNative-posix.cpp \
375 r3/posix/path-posix.cpp \
376 r3/posix/process-posix.cpp \
377 r3/posix/rand-posix.cpp \
378 r3/posix/RTTimeNow-posix.cpp \
379 r3/posix/semrw-posix.cpp \
380 r3/posix/thread-posix.cpp \
381 r3/posix/timelocal-posix.cpp \
382 r3/posix/timer-posix.cpp \
383 r3/posix/tls-posix.cpp \
384 r3/posix/utf8-posix.cpp
385RuntimeR3_SOURCES.linux.x86 += \
386 r3/posix/semevent-posix.cpp \
387 r3/posix/semeventmulti-posix.cpp \
388 r3/posix/semmutex-posix.cpp
389RuntimeR3_SOURCES.linux.amd64 += \
390 r3/linux/semevent-linux.cpp \
391 r3/linux/semeventmulti-linux.cpp
392ifdef RT_NEW_LINUX_MUTEX_CODE
393 RuntimeR3_SOURCES.linux.amd64 += \
394 r3/linux/semmutex-linux.cpp
395else
396 RuntimeR3_SOURCES.linux.amd64 += \
397 r3/posix/semmutex-posix.cpp
398endif
399
400RuntimeR3_SOURCES.os2 = \
401 generic/pathhost-generic.cpp \
402 generic/RTDirQueryInfo-generic.cpp \
403 generic/RTDirSetTimes-generic.cpp \
404 generic/RTFileMove-generic.cpp \
405 generic/RTLogWriteDebugger-generic.cpp \
406 generic/RTRandAdvCreateSystemFaster-generic.cpp \
407 generic/RTRandAdvCreateSystemTruer-generic.cpp \
408 generic/RTTimeLocalNow-generic.cpp \
409 generic/RTTimerCreate-generic.cpp \
410 generic/RTUuidCreate-generic.cpp \
411 generic/mppresent-generic.cpp \
412 generic/semnoint-generic.cpp \
413 generic/semsrw-generic.cpp \
414 generic/timer-generic.cpp \
415 generic/utf16locale-generic.cpp \
416 generic/uuid-generic.cpp \
417 generic/RTMpGetCurFrequency-generic.cpp \
418 generic/RTMpGetMaxFrequency-generic.cpp \
419 os2/RTErrConvertFromOS2.cpp \
420 r3/os2/filelock-os2.cpp \
421 r3/os2/mp-os2.cpp \
422 r3/os2/rtProcInitExePath-os2.cpp \
423 r3/os2/sched-os2.cpp \
424 r3/os2/sems-os2.cpp \
425 r3/os2/thread-os2.cpp \
426 r3/os2/time-os2.cpp \
427 r3/posix/RTSystemQueryOSInfo-posix.cpp \
428 r3/posix/alloc-posix.cpp \
429 r3/posix/dir-posix.cpp \
430 r3/posix/env-posix.cpp \
431 r3/posix/fileio-posix.cpp \
432 r3/posix/fs-posix.cpp \
433 r3/posix/ldrNative-posix.cpp \
434 r3/posix/path-posix.cpp \
435 r3/posix/process-posix.cpp \
436 r3/posix/RTTimeNow-posix.cpp \
437 r3/posix/timelocal-posix.cpp \
438 r3/posix/utf8-posix.cpp
439
440RuntimeR3_SOURCES.darwin = \
441 darwin/RTErrConvertFromDarwin.cpp \
442 darwin/RTErrConvertFromDarwinCOM.cpp \
443 darwin/RTErrConvertFromDarwinIO.cpp \
444 darwin/RTErrConvertFromDarwinKern.cpp \
445 generic/pathhost-generic.cpp \
446 generic/RTDirQueryInfo-generic.cpp \
447 generic/RTDirSetTimes-generic.cpp \
448 generic/RTFileMove-generic.cpp \
449 generic/RTLogWriteDebugger-generic.cpp \
450 generic/RTTimeLocalNow-generic.cpp \
451 generic/RTTimerCreate-generic.cpp \
452 generic/RTUuidCreate-generic.cpp \
453 generic/mppresent-generic.cpp \
454 generic/sched-generic.cpp \
455 generic/timer-generic.cpp \
456 generic/utf16locale-generic.cpp \
457 generic/uuid-generic.cpp\
458 r3/darwin/alloc-darwin.cpp \
459 r3/darwin/filelock-darwin.cpp \
460 r3/darwin/mp-darwin.cpp \
461 r3/darwin/rtProcInitExePath-darwin.cpp \
462 r3/darwin/time-darwin.cpp \
463 r3/posix/RTSystemQueryOSInfo-posix.cpp \
464 r3/posix/dir-posix.cpp \
465 r3/posix/env-posix.cpp \
466 r3/posix/fileio-posix.cpp \
467 r3/posix/fs-posix.cpp \
468 r3/posix/ldrNative-posix.cpp \
469 r3/posix/path-posix.cpp \
470 r3/posix/process-posix.cpp \
471 r3/posix/rand-posix.cpp \
472 r3/posix/semevent-posix.cpp \
473 r3/posix/semeventmulti-posix.cpp \
474 r3/posix/semmutex-posix.cpp \
475 r3/posix/semrw-posix.cpp \
476 r3/posix/thread-posix.cpp \
477 r3/posix/timelocal-posix.cpp \
478 r3/posix/tls-posix.cpp \
479 r3/posix/utf8-posix.cpp
480
481## @todo Make BSD sched.
482RuntimeR3_SOURCES.freebsd = \
483 generic/pathhost-generic.cpp \
484 generic/RTDirQueryInfo-generic.cpp \
485 generic/RTDirSetTimes-generic.cpp \
486 generic/RTFileMove-generic.cpp \
487 generic/RTLogWriteDebugger-generic.cpp \
488 generic/RTTimeLocalNow-generic.cpp \
489 generic/RTTimerCreate-generic.cpp \
490 generic/RTUuidCreate-generic.cpp \
491 generic/mppresent-generic.cpp \
492 generic/sched-generic.cpp \
493 generic/utf16locale-generic.cpp \
494 generic/uuid-generic.cpp \
495 generic/RTMpGetCurFrequency-generic.cpp \
496 generic/RTMpGetMaxFrequency-generic.cpp \
497 r3/freebsd/alloc-freebsd.cpp \
498 r3/freebsd/rtProcInitExePath-freebsd.cpp \
499 r3/posix/RTSystemQueryOSInfo-posix.cpp \
500 r3/posix/dir-posix.cpp \
501 r3/posix/env-posix.cpp \
502 r3/posix/fileio-posix.cpp \
503 r3/posix/filelock-posix.cpp \
504 r3/posix/fs-posix.cpp \
505 r3/posix/ldrNative-posix.cpp \
506 r3/posix/path-posix.cpp \
507 r3/posix/process-posix.cpp \
508 r3/posix/rand-posix.cpp \
509 r3/posix/RTMpGetCount-posix.cpp \
510 r3/posix/RTTimeNow-posix.cpp \
511 r3/posix/semevent-posix.cpp \
512 r3/posix/semeventmulti-posix.cpp \
513 r3/posix/semmutex-posix.cpp \
514 r3/posix/semrw-posix.cpp \
515 r3/posix/thread-posix.cpp \
516 r3/posix/time-posix.cpp \
517 r3/posix/timelocal-posix.cpp \
518 r3/posix/timer-posix.cpp \
519 r3/posix/tls-posix.cpp \
520 r3/posix/utf8-posix.cpp
521
522RuntimeR3_SOURCES.solaris = \
523 generic/pathhost-generic.cpp \
524 generic/RTDirQueryInfo-generic.cpp \
525 generic/RTDirSetTimes-generic.cpp \
526 generic/RTFileMove-generic.cpp \
527 generic/RTLogWriteDebugger-generic.cpp \
528 generic/RTTimeLocalNow-generic.cpp \
529 generic/RTTimerCreate-generic.cpp \
530 generic/RTUuidCreate-generic.cpp \
531 generic/sched-generic.cpp \
532 generic/utf16locale-generic.cpp \
533 generic/uuid-generic.cpp \
534 r3/posix/RTSystemQueryOSInfo-posix.cpp \
535 r3/posix/dir-posix.cpp \
536 r3/posix/env-posix.cpp \
537 r3/posix/fileio-posix.cpp \
538 r3/posix/filelock-posix.cpp \
539 r3/posix/fs-posix.cpp \
540 r3/posix/ldrNative-posix.cpp \
541 r3/posix/path-posix.cpp \
542 r3/posix/process-posix.cpp \
543 r3/posix/rand-posix.cpp \
544 r3/posix/RTTimeNow-posix.cpp \
545 r3/posix/semevent-posix.cpp \
546 r3/posix/semeventmulti-posix.cpp \
547 r3/posix/semmutex-posix.cpp \
548 r3/posix/semrw-posix.cpp \
549 r3/posix/thread-posix.cpp \
550 r3/posix/time-posix.cpp \
551 r3/posix/timelocal-posix.cpp \
552 r3/posix/timer-posix.cpp \
553 r3/posix/tls-posix.cpp \
554 r3/posix/utf8-posix.cpp \
555 r3/solaris/alloc-solaris.cpp \
556 r3/solaris/mp-solaris.cpp \
557 r3/solaris/rtProcInitExePath-solaris.cpp
558
559## PORTME: Porters add their selection of platform specific files for Ring-3 here.
560
561
562#
563# L4 RuntimeR3 subtarget since L4 headers won't work with VBOXR3.
564#
565RuntimeR3L4_TEMPLATE = VBOXR3NP
566RuntimeR3L4_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF LDR_WITH_PE
567ifneq ($(KBUILD_TARGET_ARCH),amd64)
568RuntimeR3L4_DEFS += __PIC__
569endif
570RuntimeR3L4_INCS = \
571 include \
572 $(L4_INCDIR)
573
574RuntimeR3L4_SOURCES = \
575 generic/fs-stubs-generic.cpp \
576 generic/pathhost-generic.cpp \
577 generic/RTDirQueryInfo-generic.cpp \
578 generic/RTDirSetTimes-generic.cpp \
579 generic/RTFileMove-generic.cpp \
580 generic/RTLogWriteDebugger-generic.cpp \
581 generic/RTSystemQueryOSInfo-generic.cpp \
582 generic/RTTimeLocalNow-generic.cpp \
583 generic/RTUuidCreate-generic.cpp \
584 generic/mppresent-generic.cpp \
585 generic/sched-generic.cpp \
586 generic/semnoint-generic.cpp \
587 generic/semsrw-generic.cpp \
588 generic/utf16locale-generic.cpp \
589 generic/uuid-generic.cpp \
590 l4/l4-errno.cpp \
591 l4/rtProcInitExePath-l4.cpp \
592 l4/process-l4env.cpp \
593 l4/sems-l4env.cpp \
594 l4/thread-l4env.cpp \
595 l4/timer-l4env.cpp \
596 l4/utf8-l4env.cpp \
597 r3/posix/alloc-posix.cpp \
598 r3/posix/dir-posix.cpp \
599 r3/posix/env-posix.cpp \
600 r3/posix/fileio-posix.cpp \
601 r3/posix/filelock-posix.cpp \
602 r3/posix/ldrNative-posix.cpp \
603 r3/posix/path-posix.cpp \
604 r3/posix/rand-posix.cpp \
605 r3/posix/RTTimeNow-posix.cpp \
606 r3/posix/time-posix.cpp \
607 r3/posix/timelocal-posix.cpp
608
609
610#
611# RuntimeGuestR3 - Guest Additions Runtime (static).
612# (The KBUILD_HOST inheritance here is for l4 cross building the linux
613# additions, while .x86 is for cross building x86 while targeting amd64.)
614#
615RuntimeGuestR3_TEMPLATE := VBOXGUESTR3LIB
616## @todo change this to EXTEND the RuntimeR3 target.
617RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win)
618RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT, $(RuntimeR3_DEFS))
619RuntimeGuestR3_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
620RuntimeGuestR3_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
621RuntimeGuestR3_INCS := $(RuntimeR3_INCS)
622RuntimeGuestR3_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
623RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
624RuntimeGuestR3_SOURCES := $(filter-out \
625 common/time/timesupref.cpp \
626 common/time/timesupA.asm \
627 common/time/timesup.cpp \
628 generic/RTLogWriteUser-generic.cpp \
629 , $(RuntimeR3_SOURCES))
630RuntimeGuestR3_SOURCES += \
631 common/time/timesysalias.cpp \
632 VBox/logbackdoor.cpp
633RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
634RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST))
635RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
636RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH))
637
638
639#
640# RuntimeGuestR3Mini - Minimal Guest Additions Runtime which does not require
641# initialization and can be linked into an .so. Intended
642# for X11 drivers, GRADD and similar.
643#
644RuntimeGuestR3Mini_TEMPLATE := VBOXGUESTR3DLL
645## @todo change this to EXTEND the RuntimeGuestR3 target.
646RuntimeGuestR3Mini_INST := $(INST_ADDITIONS_LIB)
647RuntimeGuestR3Mini_SDKS.win := $(RuntimeR3_SDKS.win)
648RuntimeGuestR3Mini_DEFS := $(filter-out RTCRITSECT_STRICT, $(RuntimeR3_DEFS)) RT_MINI
649RuntimeGuestR3Mini_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
650RuntimeGuestR3Mini_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
651RuntimeGuestR3Mini_INCS := $(RuntimeR3_INCS)
652RuntimeGuestR3Mini_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
653RuntimeGuestR3Mini_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
654RuntimeGuestR3Mini_SOURCES = \
655 common/err/errmsg.cpp \
656 common/err/errmsgxpcom.cpp \
657 common/err/RTErrConvertFromErrno.cpp \
658 common/log/logformat.cpp \
659 common/misc/assert.cpp \
660 common/misc/sanity-c.c \
661 common/misc/sanity-cpp.cpp \
662 common/string/strformat.cpp \
663 common/string/strformatrt.cpp \
664 common/string/strformattype.cpp \
665 common/string/string.cpp \
666 common/string/strprintf.cpp \
667 common/string/strtonum.cpp \
668 common/string/unidata.cpp \
669 common/string/utf-8.cpp \
670 common/string/utf-16.cpp \
671 generic/pathhost-generic.cpp \
672 generic/RTAssertShouldPanic-generic.cpp \
673 r3/alloc.cpp \
674 r3/fileio.cpp \
675 r3/fs.cpp \
676 r3/path.cpp
677RuntimeGuestR3Mini_SOURCES.linux = \
678 r3/posix/fileio-posix.cpp \
679 r3/posix/path-posix.cpp \
680 r3/posix/utf8-posix.cpp
681RuntimeGuestR3Mini_SOURCES.solaris = \
682 r3/posix/fileio-posix.cpp \
683 r3/posix/path-posix.cpp \
684 r3/posix/utf8-posix.cpp
685RuntimeGuestR3Mini_SOURCES.freebsd = \
686 r3/posix/fileio-posix.cpp \
687 r3/posix/path-posix.cpp \
688 r3/posix/utf8-posix.cpp
689# VBox specific stuff.
690RuntimeGuestR3Mini_SOURCES += \
691 VBox/logbackdoor.cpp \
692 VBox/logbackdoor-redirect.cpp \
693 VBox/strformat-vbox.cpp
694
695
696#
697# RuntimeLnxHostR3 Linux host program runtime
698# (Only used when building L4.)
699#
700RuntimeLnxHostR3_TEMPLATE = VBOXLNXHOSTR3LIB
701RuntimeLnxHostR3_DEFS = IN_RT_R3 IN_SUP_R3 RT_WITH_VBOX RT_NO_GIP
702RuntimeLnxHostR3_SOURCES = \
703 $(RuntimeR3_SOURCES.linux.$(KBUILD_TARGET_ARCH)) \
704 $(RuntimeR3_SOURCES.linux) \
705 $(RuntimeR3_SOURCES)
706RuntimeLnxHostR3_INCS = \
707 $(RuntimeR3_INCS.linux.$(KBUILD_TARGET_ARCH)) \
708 $(RuntimeR3_INCS.linux) \
709 $(RuntimeR3_INCS)
710
711
712#
713# VBoxRT - Shared Object / DLL version.
714#
715VBoxRT_TEMPLATE = VBOXR3
716VBoxRT_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
717ifeq ($(KBUILD_TARGET)$(VBOX_WITH_HARDENING),darwin)
718VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
719endif
720VBoxRT_DEFS = $(RuntimeR3_DEFS) IN_SUP_R3 IN_SUP_R3
721VBoxRT_DEFS.$(KBUILD_TYPE) = $(RuntimeR3_DEFS.$(KBUILD_TYPE))
722VBoxRT_SOURCES = \
723 VBox/VBoxRTDeps.cpp \
724 $(RuntimeR3_SOURCES)
725VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
726VBoxRT_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
727VBoxRT_SOURCES.win += r3/win/dllmain-win.cpp
728VBoxRT_SOURCES.win.x86 += r3/win/VBoxRT-win32.def
729VBoxRT_SOURCES.win.amd64 += r3/win/VBoxRT-win64.def
730VBoxRT_INCS = $(RuntimeR3_INCS)
731VBoxRT_INCS.$(KBUILD_TARGET) = $(RuntimeR3_INCS.$(KBUILD_TARGET))
732VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
733VBoxRT_LIBS = \
734 $(PATH_LIB)/SUPR3$(VBOX_SUFF_LIB) \
735 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB)
736ifdef IPRT_WITH_KSTUFF
737 VBoxRT_LIBS += \
738 $(PATH_LIB)/VBox-kStuff$(VBOX_SUFF_LIB)
739endif
740VBoxRT_LIBS.darwin = \
741 iconv
742VBoxRT_LIBS.freebsd = \
743 iconv
744VBoxRT_LIBS.solaris = \
745 kstat
746VBoxRT_LIBPATH.freebsd = \
747 /usr/local/lib
748VBoxRT_LDFLAGS.darwin = -framework IOKit -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxRT.dylib
749ifdef VBOX_USE_VCC80
750VBoxRT_LDFLAGS.win = /MANIFEST
751endif
752VBoxRT_LDFLAGS.l4 = \
753 -Wl,-whole-archive \
754 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB) \
755 -Wl,-no-whole-archive
756ifeq ($(KBUILD_TARGET),l4)
757VBoxRT_LIBS += \
758 $(L4_LIBDIR)/libl4sys.a \
759 $(L4_LIBDIR)/libl4sys.p.a
760endif
761VBoxRT_LIBS.l4 = \
762 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB)
763
764#
765# HACK ALLERT! Make testcase run during build on SELinux boxes.
766# Create a dummy DLL that ensure that VBoxRT is installed
767# during the DLL pass and cleaned up later.
768#
769ifeq ($(KBUILD_TARGET),linux)
770 if1of (VBoxRT, $(DLLS))
771 ifneq ($(wildcard /usr/bin/chcon),)
772VBoxRT_NOINST = true
773
774DLLS += VBoxRTDummy
775VBoxRTDummy_TEMPLATE = VBOXR3
776VBoxRTDummy_NOINST = true
777VBoxRTDummy_LIBS = $(PATH_BIN)/VBoxRT.so
778VBoxRTDummy_CLEAN= $(PATH_BIN)/VBoxRT.so
779BLDDIRS += $(PATH_BIN)
780
781$(PATH_BIN)/VBoxRT.so: $$(TARGET_VBoxRT) | $$(dir $$@)
782 $(INSTALL) $< $@
783 chcon -t texrel_shlib_t $@ || true
784
785 endif # chcon present.
786 endif # building VBoxRT
787endif # linux
788
789#
790# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
791# This is used together with VBoxRT.
792#
793## @todo the *_alias.c stuff is busted, remove and use RT_WITH_NOCRT_ALIASES instead.
794RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC
795RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
796RuntimeR3NoCRTGCC_INCS = include
797RuntimeR3NoCRTGCC_SOURCES = \
798 common/misc/sanity-cpp.cpp \
799 common/misc/sanity-c.c \
800 \
801 common/math/ceill.asm \
802 common/math/cosl.asm \
803 common/math/fabs.asm \
804 common/math/fabsf.asm \
805 common/math/fabsl.asm \
806 common/math/floor.asm \
807 common/math/floorf.asm \
808 common/math/floorl.asm \
809 common/math/ldexpl.asm \
810 common/math/llrint.asm \
811 common/math/llrintf.asm \
812 common/math/llrintl.asm \
813 common/math/logl.asm \
814 common/math/lrint.asm \
815 common/math/lrintf.asm \
816 common/math/lrintl.asm \
817 common/math/remainder.asm \
818 common/math/remainderf.asm \
819 common/math/remainderl.asm \
820 common/math/sinl.asm \
821 common/math/tanl.asm \
822 common/math/trunc.asm \
823 common/math/truncf.asm \
824 common/math/truncl.asm \
825 \
826 $(RuntimeNoCrt_SOURCES) \
827 \
828 common/string/memchr_alias.c \
829 common/string/memcmp_alias.c \
830 common/string/memcpy_alias.c \
831 common/string/memmove_alias.c \
832 common/string/memset_alias.c \
833 common/string/strchr_alias.c \
834 common/string/strcmp_alias.c \
835 common/string/strlen_alias.c
836
837RuntimeR3NoCRTGCC_SOURCES.x86 = \
838 common/math/x86/fenv-x86.c \
839 common/math/gcc/adddi3.c \
840 common/math/gcc/anddi3.c \
841 common/math/gcc/ashldi3.c \
842 common/math/gcc/ashrdi3.c \
843 common/math/gcc/cmpdi2.c \
844 common/math/gcc/divdi3.c \
845 common/math/gcc/iordi3.c \
846 common/math/gcc/lshldi3.c \
847 common/math/gcc/lshrdi3.c \
848 common/math/gcc/moddi3.c \
849 common/math/gcc/muldi3.c \
850 common/math/gcc/negdi2.c \
851 common/math/gcc/notdi2.c \
852 common/math/gcc/qdivrem.c \
853 common/math/gcc/subdi3.c \
854 common/math/gcc/ucmpdi2.c \
855 common/math/gcc/udivdi3.c \
856 common/math/gcc/umoddi3.c \
857 common/math/gcc/xordi3.c
858
859
860## @todo stop using the old memcpy.c and memset.c code.
861
862#
863# RuntimeR0 - Ring0 library for VMMR0.
864#
865RuntimeR0_TEMPLATE = VBOXR0
866RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX
867RuntimeR0_INCS = include
868RuntimeR0_SOURCES = \
869 common/checksum/crc32.cpp \
870 common/checksum/crc64.cpp \
871 common/checksum/md5.cpp \
872 common/checksum/ipv4.cpp \
873 common/log/logellipsis.cpp \
874 common/log/logrelellipsis.cpp \
875 common/log/logcom.cpp \
876 common/log/logformat.cpp \
877 common/misc/assert.cpp \
878 common/misc/handletable.cpp \
879 common/misc/handletablectx.cpp \
880 common/misc/handletablesimple.cpp \
881 common/misc/sanity-c.c \
882 common/misc/sanity-cpp.cpp \
883 common/misc/RTAssertMsg2.cpp \
884 common/string/strformat.cpp \
885 common/string/strformatrt.cpp \
886 common/string/strformattype.cpp \
887 common/string/strncmp.cpp \
888 common/string/strpbrk.cpp \
889 common/string/strprintf.cpp \
890 common/table/avlgcptr.cpp \
891 common/table/avlhcphys.cpp \
892 common/table/avllu32.cpp \
893 common/table/avlogcphys.cpp \
894 common/table/avlogcptr.cpp \
895 common/table/avlohcphys.cpp \
896 common/table/avloioport.cpp \
897 common/table/avlpv.cpp \
898 common/table/avlrogcphys.cpp \
899 common/table/avlrogcptr.cpp \
900 common/table/avlroioport.cpp \
901 common/table/avlroogcptr.cpp \
902 common/table/avlu32.cpp \
903 common/time/timesup.cpp \
904 generic/RTAssertShouldPanic-generic.cpp \
905 VBox/strformat-vbox.cpp \
906 \
907 $(RuntimeNoCrt_SOURCES)
908
909if1of ($(KBUILD_TARGET), darwin solaris freebsd)
910RuntimeR0_SOURCES += \
911 common/math/gcc/adddi3.c \
912 common/math/gcc/anddi3.c \
913 common/math/gcc/ashldi3.c \
914 common/math/gcc/ashrdi3.c \
915 common/math/gcc/cmpdi2.c \
916 common/math/gcc/divdi3.c \
917 common/math/gcc/iordi3.c \
918 common/math/gcc/lshldi3.c \
919 common/math/gcc/lshrdi3.c \
920 common/math/gcc/moddi3.c \
921 common/math/gcc/muldi3.c \
922 common/math/gcc/negdi2.c \
923 common/math/gcc/notdi2.c \
924 common/math/gcc/qdivrem.c \
925 common/math/gcc/subdi3.c \
926 common/math/gcc/ucmpdi2.c \
927 common/math/gcc/udivdi3.c \
928 common/math/gcc/umoddi3.c \
929 common/math/gcc/xordi3.c
930endif
931
932#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
933# RuntimeR0_SOURCES += common/time/timesupA.asm
934#else
935 RuntimeR0_SOURCES += common/time/timesupref.cpp
936#endif
937
938RuntimeR0_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
939RuntimeR0_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
940
941RuntimeR0_SOURCES.os2 = \
942 os2/RTErrConvertFromOS2.cpp \
943 os2/sys0.asm
944
945
946#
947# RuntimeR0Drv - Ring0 library for host drivers.
948#
949RuntimeR0Drv_TEMPLATE = VBOXR0DRV
950RuntimeR0Drv_SDKS.win = W2K3DDK WINPSDKINCS
951RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include
952RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
953RuntimeR0Drv_DEFS.win = IN_SUP_R0
954RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0 # why is IN_SUP_R0 here? because!
955
956RuntimeR0Drv_INCS.linux = \
957 r0drv/linux
958ifdef VBOX_WITH_SOLARIS_VBI
959 RuntimeR0Drv_INCS.solaris = \
960 r0drv/solaris/vbi/i86pc
961endif
962
963RuntimeR0Drv_SOURCES = \
964 common/alloc/alloc.cpp \
965 common/misc/RTAssertMsg2.cpp \
966 common/checksum/crc32.cpp \
967 common/checksum/crc64.cpp \
968 common/checksum/md5.cpp \
969 common/checksum/ipv4.cpp \
970 common/log/log.cpp \
971 common/log/logellipsis.cpp \
972 common/log/logrel.cpp \
973 common/log/logrelellipsis.cpp \
974 common/log/logcom.cpp \
975 common/log/logformat.cpp \
976 common/misc/assert.cpp \
977 common/misc/handletable.cpp \
978 common/misc/handletablectx.cpp \
979 common/misc/handletablesimple.cpp \
980 common/misc/sanity-c.c \
981 common/misc/sanity-cpp.cpp \
982 common/string/strformat.cpp \
983 common/string/strformatrt.cpp \
984 common/string/strformattype.cpp \
985 common/string/strprintf.cpp \
986 common/string/strtonum.cpp \
987 common/table/avlpv.cpp \
988 generic/RTLogWriteStdErr-stub-generic.cpp \
989 generic/RTLogWriteUser-generic.cpp \
990 generic/uuid-generic.cpp \
991 r0drv/alloc-r0drv.cpp \
992 r0drv/initterm-r0drv.cpp \
993 VBox/log-vbox.cpp \
994 VBox/strformat-vbox.cpp
995
996## @todo: Linking against RuntimeR0Drv on Linux will result in unresolved external
997## references to several string functions (e.g. strlen). We could include the
998## missing functions here but our own implementations conflict with declarations
999## of some Linux kernels (inline versus not inline, size_t versus unsigned int).
1000##
1001## The prototypes for the unresolved externals are declared in <linux/string.h>.
1002## This file is not included with extern "C" { ... } and therefore the function
1003## prototypes are mangled during C++ compilation. That's why we have to provide
1004## implementations with mangled function names.
1005##
1006## bird: Why don't we just extern "C" {} that file then?
1007RuntimeR0Drv_SOURCES.linux = \
1008 common/alloc/heapsimple.cpp \
1009 common/string/strpbrk.cpp \
1010 common/err/RTErrConvertToErrno.cpp \
1011 common/err/RTErrConvertFromErrno.cpp \
1012 generic/RTAssertShouldPanic-generic.cpp \
1013 generic/RTLogWriteStdOut-stub-generic.cpp \
1014 generic/mppresent-generic.cpp \
1015 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1016 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1017 r0drv/linux/alloc-r0drv-linux.c \
1018 r0drv/linux/assert-r0drv-linux.c \
1019 r0drv/linux/initterm-r0drv-linux.c \
1020 r0drv/linux/memobj-r0drv-linux.c \
1021 r0drv/linux/mp-r0drv-linux.c \
1022 r0drv/linux/mpnotification-r0drv-linux.c \
1023 r0drv/linux/process-r0drv-linux.c \
1024 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
1025 r0drv/linux/semevent-r0drv-linux.c \
1026 r0drv/linux/semeventmulti-r0drv-linux.c \
1027 r0drv/linux/semfastmutex-r0drv-linux.c \
1028 r0drv/linux/spinlock-r0drv-linux.c \
1029 r0drv/linux/thread-r0drv-linux.c \
1030 r0drv/linux/thread2-r0drv-linux.c \
1031 r0drv/linux/time-r0drv-linux.c \
1032 r0drv/linux/timer-r0drv-linux.c \
1033 r0drv/memobj-r0drv.cpp \
1034 r0drv/mpnotification-r0drv.c \
1035 r0drv/powernotification-r0drv.c
1036## @todo thread2-r0drv-linux.c and assert-r0drv-linux.c
1037
1038RuntimeR0Drv_SOURCES.win = \
1039 common/misc/thread.cpp \
1040 common/string/memcmp.asm \
1041 common/string/memchr.asm \
1042 common/string/memcpy.asm \
1043 common/string/memset.asm \
1044 common/string/memmove.asm \
1045 common/string/strlen.asm \
1046 common/string/strncmp.cpp \
1047 common/string/strpbrk.cpp \
1048 generic/RTAssertShouldPanic-generic.cpp \
1049 generic/RTLogWriteStdOut-stub-generic.cpp \
1050 generic/mppresent-generic.cpp \
1051 nt/RTErrConvertFromNtStatus.cpp \
1052 r0drv/memobj-r0drv.cpp \
1053 r0drv/mpnotification-r0drv.c \
1054 r0drv/powernotification-r0drv.c \
1055 r0drv/nt/alloc-r0drv-nt.cpp \
1056 r0drv/nt/assert-r0drv-nt.cpp \
1057 r0drv/nt/initterm-r0drv-nt.cpp \
1058 r0drv/nt/memobj-r0drv-nt.cpp \
1059 r0drv/nt/mp-r0drv-nt.cpp \
1060 r0drv/nt/mpnotification-r0drv-nt.cpp \
1061 r0drv/nt/process-r0drv-nt.cpp \
1062 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
1063 r0drv/nt/semevent-r0drv-nt.cpp \
1064 r0drv/nt/semeventmulti-r0drv-nt.cpp \
1065 r0drv/nt/semfastmutex-r0drv-nt.cpp \
1066 r0drv/nt/semmutex-r0drv-nt.cpp \
1067 r0drv/nt/spinlock-r0drv-nt.cpp \
1068 r0drv/nt/thread-r0drv-nt.cpp \
1069 r0drv/nt/thread2-r0drv-nt.cpp \
1070 r0drv/nt/time-r0drv-nt.cpp \
1071 r0drv/nt/timer-r0drv-nt.cpp
1072
1073RuntimeR0Drv_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
1074RuntimeR0Drv_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1075
1076RuntimeR0Drv_SOURCES.darwin = \
1077 common/err/RTErrConvertFromErrno.cpp \
1078 common/misc/RTAssertMsg1Weak.cpp \
1079 common/misc/RTAssertMsg2Weak.cpp \
1080 common/misc/thread.cpp \
1081 common/string/memchr.asm \
1082 common/string/strpbrk.cpp \
1083 darwin/RTErrConvertFromDarwin.cpp \
1084 darwin/RTErrConvertFromDarwinIO.cpp \
1085 darwin/RTErrConvertFromDarwinKern.cpp \
1086 generic/RTAssertShouldPanic-generic.cpp \
1087 generic/RTTimerCreate-generic.cpp \
1088 generic/mppresent-generic.cpp \
1089 generic/timer-generic.cpp \
1090 r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp \
1091 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1092 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1093 r0drv/generic/mpnotification-r0drv-generic.cpp \
1094 r0drv/darwin/alloc-r0drv-darwin.cpp \
1095 r0drv/darwin/assert-r0drv-darwin.cpp \
1096 r0drv/darwin/initterm-r0drv-darwin.cpp \
1097 r0drv/darwin/memobj-r0drv-darwin.cpp \
1098 r0drv/darwin/mp-r0drv-darwin.cpp \
1099 r0drv/darwin/process-r0drv-darwin.cpp \
1100 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
1101 r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
1102 r0drv/darwin/semaphore-r0drv-darwin.cpp \
1103 r0drv/darwin/spinlock-r0drv-darwin.cpp \
1104 r0drv/darwin/thread-r0drv-darwin.cpp \
1105 r0drv/darwin/thread2-r0drv-darwin.cpp \
1106 r0drv/darwin/time-r0drv-darwin.cpp \
1107 r0drv/memobj-r0drv.cpp \
1108 r0drv/powernotification-r0drv.c
1109
1110RuntimeR0Drv_SOURCES.os2 = \
1111 common/string/memchr.asm \
1112 common/string/memcmp.asm \
1113 common/string/memcpy.asm \
1114 common/string/mempcpy.asm \
1115 common/string/memmove.asm \
1116 common/string/memset.asm \
1117 common/string/strchr.asm \
1118 common/string/strcmp.asm \
1119 common/string/strcpy.asm \
1120 common/string/strlen.asm \
1121 \
1122 common/string/strncmp.cpp \
1123 common/string/strpbrk.cpp \
1124 \
1125 common/misc/thread.cpp \
1126 generic/RTAssertShouldPanic-generic.cpp \
1127 generic/RTLogWriteDebugger-generic.cpp \
1128 generic/RTLogWriteStdOut-stub-generic.cpp \
1129 generic/RTMpCpuId-generic.cpp \
1130 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1131 generic/RTMpCpuIdToSetIndex-generic.cpp \
1132 generic/RTMpIsCpuPossible-generic.cpp \
1133 generic/RTMpGetCount-generic.cpp \
1134 generic/RTMpGetMaxCpuId-generic.cpp \
1135 generic/RTMpGetOnlineCount-generic.cpp \
1136 generic/RTMpGetOnlineSet-generic.cpp \
1137 generic/RTMpGetSet-generic.cpp \
1138 generic/RTMpIsCpuOnline-generic.cpp \
1139 generic/RTTimerCreate-generic.cpp \
1140 generic/mppresent-generic.cpp \
1141 os2/RTErrConvertFromOS2.cpp \
1142 os2/sys0.asm \
1143 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1144 r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp \
1145 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1146 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1147 r0drv/generic/mpnotification-r0drv-generic.cpp \
1148 r0drv/memobj-r0drv.cpp \
1149 r0drv/powernotification-r0drv.c \
1150 r0drv/os2/alloc-r0drv-os2.cpp \
1151 r0drv/os2/assert-r0drv-os2.cpp \
1152 r0drv/os2/assertA-r0drv-os2.asm \
1153 r0drv/os2/initterm-r0drv-os2.cpp \
1154 r0drv/os2/memobj-r0drv-os2.cpp \
1155 r0drv/os2/os2imports.imp \
1156 r0drv/os2/process-r0drv-os2.cpp \
1157 r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
1158 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
1159 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
1160 r0drv/os2/semevent-r0drv-os2.cpp \
1161 r0drv/os2/semeventmulti-r0drv-os2.cpp \
1162 r0drv/os2/semfastmutex-r0drv-os2.cpp \
1163 r0drv/os2/spinlock-r0drv-os2.cpp \
1164 r0drv/os2/thread-r0drv-os2.cpp \
1165 r0drv/os2/thread2-r0drv-os2.cpp \
1166 r0drv/os2/time-r0drv-os2.cpp \
1167 r0drv/os2/timer-r0drv-os2.cpp \
1168 r0drv/os2/timerA-r0drv-os2.asm
1169
1170RuntimeR0Drv_SOURCES.freebsd = \
1171 common/err/RTErrConvertFromErrno.cpp \
1172 common/err/RTErrConvertToErrno.cpp \
1173 common/misc/thread.cpp \
1174 common/string/memchr.asm \
1175 common/string/memmove.asm \
1176 common/string/strpbrk.cpp \
1177 common/string/memcmp.asm \
1178 common/string/strchr.asm \
1179 generic/RTAssertShouldPanic-generic.cpp \
1180 generic/RTLogWriteDebugger-generic.cpp \
1181 generic/RTLogWriteStdOut-stub-generic.cpp \
1182 generic/RTMpCpuId-generic.cpp \
1183 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1184 generic/RTMpCpuIdToSetIndex-generic.cpp \
1185 generic/RTMpIsCpuPossible-generic.cpp \
1186 generic/RTMpGetCount-generic.cpp \
1187 generic/RTMpGetMaxCpuId-generic.cpp \
1188 generic/RTMpGetOnlineCount-generic.cpp \
1189 generic/RTMpGetOnlineSet-generic.cpp \
1190 generic/RTMpGetSet-generic.cpp \
1191 generic/RTMpIsCpuOnline-generic.cpp \
1192 generic/RTTimerCreate-generic.cpp \
1193 generic/mppresent-generic.cpp \
1194 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1195 r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp \
1196 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1197 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1198 r0drv/generic/mpnotification-r0drv-generic.cpp \
1199 r0drv/freebsd/alloc-r0drv-freebsd.c \
1200 r0drv/freebsd/assert-r0drv-freebsd.c \
1201 r0drv/freebsd/initterm-r0drv-freebsd.c \
1202 r0drv/freebsd/memobj-r0drv-freebsd.c \
1203 r0drv/freebsd/process-r0drv-freebsd.c \
1204 r0drv/freebsd/semevent-r0drv-freebsd.c \
1205 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
1206 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
1207 r0drv/freebsd/spinlock-r0drv-freebsd.c \
1208 r0drv/freebsd/thread-r0drv-freebsd.c \
1209 r0drv/freebsd/thread2-r0drv-freebsd.c \
1210 r0drv/freebsd/time-r0drv-freebsd.c \
1211 r0drv/freebsd/timer-r0drv-freebsd.c \
1212 r0drv/memobj-r0drv.cpp \
1213 r0drv/powernotification-r0drv.c
1214
1215RuntimeR0Drv_SOURCES.solaris = \
1216 common/err/RTErrConvertFromErrno.cpp \
1217 common/misc/thread.cpp \
1218 common/string/memchr.asm \
1219 generic/RTAssertShouldPanic-generic.cpp \
1220 generic/RTLogWriteStdOut-stub-generic.cpp \
1221 generic/RTTimerCreate-generic.cpp \
1222 generic/mppresent-generic.cpp \
1223 r0drv/memobj-r0drv.cpp \
1224 r0drv/mpnotification-r0drv.c \
1225 r0drv/powernotification-r0drv.c \
1226 r0drv/solaris/assert-r0drv-solaris.c \
1227 r0drv/solaris/initterm-r0drv-solaris.c \
1228 r0drv/solaris/semevent-r0drv-solaris.c \
1229 r0drv/solaris/semeventmulti-r0drv-solaris.c \
1230 r0drv/solaris/semfastmutex-r0drv-solaris.c \
1231 r0drv/solaris/spinlock-r0drv-solaris.c
1232
1233ifdef VBOX_WITH_SOLARIS_VBI
1234 RuntimeR0Drv_SOURCES.solaris += \
1235 r0drv/solaris/vbi/mpnotification-r0drv-solaris.c \
1236 r0drv/solaris/vbi/alloc-r0drv-solaris.c \
1237 r0drv/solaris/vbi/memobj-r0drv-solaris.c \
1238 r0drv/solaris/vbi/mp-r0drv-solaris.c \
1239 r0drv/solaris/vbi/process-r0drv-solaris.c \
1240 r0drv/solaris/vbi/RTLogWriteDebugger-r0drv-solaris.c \
1241 r0drv/solaris/vbi/thread-r0drv-solaris.c \
1242 r0drv/solaris/vbi/thread2-r0drv-solaris.c \
1243 r0drv/solaris/vbi/time-r0drv-solaris.c \
1244 r0drv/solaris/vbi/timer-r0drv-solaris.c
1245else # !VBOX_WITH_SOLARIS_VBI
1246 RuntimeR0Drv_SOURCES.solaris += \
1247 r0drv/solaris/mpnotification-r0drv-solaris.c \
1248 r0drv/solaris/alloc-r0drv-solaris.c \
1249 r0drv/solaris/memobj-r0drv-solaris.c \
1250 r0drv/solaris/process-r0drv-solaris.c \
1251 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
1252 r0drv/solaris/thread-r0drv-solaris.c \
1253 r0drv/solaris/thread2-r0drv-solaris.c \
1254 r0drv/solaris/time-r0drv-solaris.c \
1255 r0drv/solaris/timer-r0drv-solaris.c
1256 # Don't use mp-r0drv-solaris.c because it will cause crashes due to incorrect memobj-r0drv-solaris.c code.
1257 ifeq (0,0)
1258 # Stub it. ## @todo limit the stubbing to RTMpOn*.
1259 RuntimeR0Drv_SOURCES.solaris += \
1260 generic/RTMpCpuId-generic.cpp \
1261 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1262 generic/RTMpCpuIdToSetIndex-generic.cpp \
1263 generic/RTMpIsCpuPossible-generic.cpp \
1264 generic/RTMpGetCount-generic.cpp \
1265 generic/RTMpGetMaxCpuId-generic.cpp \
1266 generic/RTMpGetOnlineCount-generic.cpp \
1267 generic/RTMpGetOnlineSet-generic.cpp \
1268 generic/RTMpGetSet-generic.cpp \
1269 generic/RTMpIsCpuOnline-generic.cpp \
1270 r0drv/generic/RTMpOn-r0drv-generic.cpp
1271 else
1272 # Use mp-r0drv-solaris.c.
1273 RuntimeR0Drv_SOURCES.solaris += \
1274 r0drv/solaris/mp-r0drv-solaris.c
1275# r0drv/solaris/mpnotification-r0drv-solaris.c
1276 endif
1277
1278endif # !VBOX_WITH_SOLARIS_VBI
1279
1280## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
1281
1282
1283#
1284# RuntimeGuestR0 - Guest driver runtime.
1285# This is almost the same as the RuntimeR0Drv, the main difference
1286# is in the backdoor logging and the lack of sup.h (which should be
1287# made irrelevant even for RuntimeR0Drv).
1288#
1289RuntimeGuestR0_TEMPLATE := VBOXGUESTR0LIB
1290RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
1291RuntimeGuestR0_SOURCES += VBox/logbackdoor.cpp
1292RuntimeGuestR0_EXTENDS = RuntimeR0Drv
1293
1294# HACK: no vbi for the solaris guest additions - yet.
1295RuntimeGuestR0_SOURCES.solaris = \
1296 common/err/RTErrConvertFromErrno.cpp \
1297 common/err/RTErrConvertToErrno.cpp \
1298 common/misc/thread.cpp \
1299 common/string/memchr.asm \
1300 generic/RTAssertShouldPanic-generic.cpp \
1301 generic/RTTimerCreate-generic.cpp \
1302 r0drv/memobj-r0drv.cpp \
1303 generic/RTMpCpuId-generic.cpp \
1304 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1305 generic/RTMpCpuIdToSetIndex-generic.cpp \
1306 generic/RTMpIsCpuPossible-generic.cpp \
1307 generic/RTMpGetCount-generic.cpp \
1308 generic/RTMpGetMaxCpuId-generic.cpp \
1309 generic/RTMpGetOnlineCount-generic.cpp \
1310 generic/RTMpGetOnlineSet-generic.cpp \
1311 generic/RTMpGetSet-generic.cpp \
1312 generic/RTMpIsCpuOnline-generic.cpp \
1313 generic/RTLogWriteStdOut-stub-generic.cpp \
1314 generic/mppresent-generic.cpp \
1315 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1316 r0drv/generic/mpnotification-r0drv-generic.cpp \
1317 r0drv/solaris/alloc-r0drv-solaris.c \
1318 r0drv/solaris/assert-r0drv-solaris.c \
1319 r0drv/solaris/initterm-r0drv-solaris.c \
1320 r0drv/solaris/memobj-r0drv-solaris.c \
1321 r0drv/solaris/process-r0drv-solaris.c \
1322 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
1323 r0drv/solaris/semevent-r0drv-solaris.c \
1324 r0drv/solaris/semeventmulti-r0drv-solaris.c \
1325 r0drv/solaris/semfastmutex-r0drv-solaris.c \
1326 r0drv/solaris/spinlock-r0drv-solaris.c \
1327 r0drv/solaris/thread-r0drv-solaris.c \
1328 r0drv/solaris/thread2-r0drv-solaris.c \
1329 r0drv/solaris/time-r0drv-solaris.c \
1330 r0drv/solaris/timer-r0drv-solaris.c
1331
1332#
1333# RuntimeGuestR0NT4 - Win32 NT4 guest driver runtime.
1334#
1335RuntimeGuestR0NT4_EXTENDS = RuntimeGuestR0
1336RuntimeGuestR0NT4_EXTENDS_BY = appending
1337RuntimeGuestR0NT4_DEFS = IPRT_TARGET_NT4
1338
1339
1340#
1341# RuntimeGC - Guest context library.
1342#
1343RuntimeGC_TEMPLATE = VBOXGC
1344RuntimeGC_DEFS = IN_RT_GC RT_WITH_VBOX
1345RuntimeGC_INCS = include
1346RuntimeGC_SOURCES = \
1347 common/log/log.cpp \
1348 common/log/logellipsis.cpp \
1349 common/log/logrel.cpp \
1350 common/log/logrelellipsis.cpp \
1351 common/log/logcom.cpp \
1352 common/log/logformat.cpp \
1353 common/misc/assert.cpp \
1354 common/misc/sanity-c.c \
1355 common/misc/sanity-cpp.cpp \
1356 common/string/strformat.cpp \
1357 common/string/strformatrt.cpp \
1358 common/string/strformattype.cpp \
1359 common/string/strncmp.cpp \
1360 common/string/strpbrk.cpp \
1361 common/string/strprintf.cpp \
1362 common/table/avllu32.cpp \
1363 common/table/avlou32.cpp \
1364 common/table/avlogcphys.cpp \
1365 common/table/avlogcptr.cpp \
1366 common/table/avlohcphys.cpp \
1367 common/table/avloioport.cpp \
1368 common/table/avlrogcphys.cpp \
1369 common/table/avlrogcptr.cpp \
1370 common/table/avlroioport.cpp \
1371 common/table/avlroogcptr.cpp \
1372 common/table/avlu32.cpp \
1373 common/time/timeprog.cpp \
1374 common/time/timesup.cpp \
1375 gc/initterm-gc.cpp \
1376 generic/RTAssertShouldPanic-generic.cpp \
1377 VBox/strformat-vbox.cpp \
1378 \
1379 $(RuntimeNoCrt_SOURCES)
1380
1381#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
1382# RuntimeGC_SOURCES += common/time/timesupA.asm
1383#else
1384 RuntimeGC_SOURCES += common/time/timesupref.cpp
1385#endif
1386
1387RuntimeGC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1388
1389ifeq ($(VBOX_LDR_FMT32),lx)
1390 RuntimeGC_SOURCES += os2/sys0.asm
1391endif
1392
1393if1of ($(KBUILD_TARGET), darwin solaris freebsd)
1394RuntimeGC_SOURCES += \
1395 common/math/gcc/adddi3.c \
1396 common/math/gcc/anddi3.c \
1397 common/math/gcc/ashldi3.c \
1398 common/math/gcc/ashrdi3.c \
1399 common/math/gcc/cmpdi2.c \
1400 common/math/gcc/divdi3.c \
1401 common/math/gcc/iordi3.c \
1402 common/math/gcc/lshldi3.c \
1403 common/math/gcc/lshrdi3.c \
1404 common/math/gcc/moddi3.c \
1405 common/math/gcc/muldi3.c \
1406 common/math/gcc/negdi2.c \
1407 common/math/gcc/notdi2.c \
1408 common/math/gcc/qdivrem.c \
1409 common/math/gcc/subdi3.c \
1410 common/math/gcc/ucmpdi2.c \
1411 common/math/gcc/udivdi3.c \
1412 common/math/gcc/umoddi3.c \
1413 common/math/gcc/xordi3.c
1414endif
1415
1416
1417#
1418# Static library for new & delete for the electric fence.
1419#
1420RuntimeEFCPP_TEMPLATE = $(RuntimeR3_TEMPLATE)
1421RuntimeEFCPP_SDKS = $(RuntimeR3_SDKS)
1422RuntimeEFCPP_SDKS.$(KBUILD_TARGET) = $(RuntimeR3_SDKS.$(KBUILD_TARGET))
1423RuntimeEFCPP_DEFS = $(RuntimeR3_DEFS)
1424RuntimeEFCPP_DEFS.$(KBUILD_TARGET) = $(RuntimeR3_DEFS.$(KBUILD_TARGET))
1425RuntimeEFCPP_INCS = $(RuntimeR3_INCS)
1426RuntimeEFCPP_INCS.$(KBUILD_TARGET) = $(RuntimeR3_INCS.$(KBUILD_TARGET))
1427RuntimeEFCPP_SOURCES = r3/alloc-ef-cpp.cpp
1428
1429
1430
1431#
1432# errmsg.cpp depends on a generated header.
1433#
1434common/err/errmsg.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgdata.h
1435common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR)
1436
1437win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgcomdata.h
1438win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR)
1439
1440# Our COM errors only for R3 libraries on the host
1441define def_errmsgwin_deps
1442 $(lib)_win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
1443 $(lib)_common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR)
1444 $(lib)_common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
1445endef
1446$(foreach lib,RuntimeR3 VBoxRT RuntimeLnxHostR3,$(eval $(def_errmsgwin_deps)))
1447
1448
1449#
1450# Generate the rules (we're the to sub-makefile).
1451#
1452include $(KBUILD_PATH)/subfooter.kmk
1453
1454
1455#
1456# Generate the status code data.
1457#
1458$(IPRT_OUT_DIR)/errmsgdata.h: \
1459 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.sed \
1460 $(PATH_ROOT)/include/iprt/err.h \
1461 $(PATH_ROOT)/include/VBox/err.h \
1462 | $$(dir $$@)
1463 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1464 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1465
1466## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
1467$(IPRT_OUT_DIR)/errmsgcomdata.h: \
1468 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgcom.sed \
1469 $$(PATH_SDK_WINPSDK_INC)/WinError.h \
1470 | $$(dir $$@)
1471 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1472 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1473
1474$(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \
1475 $(VBOX_PATH_RUNTIME_SRC)/VBox/errmsgvboxcom.xsl \
1476 $(VBOX_PATH_RUNTIME_SRC)/../Main/idl/VirtualBox.xidl \
1477 | $$(dir $$@)
1478 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
1479 $(VBOX_XSLTPROC) -o $@ $< $(filter %.xidl,$^)
1480
1481
1482#
1483# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
1484#
1485ldrELFRelocatable.cpp.o: ldrELF.o
1486ldrELFRelocatable.cpp.obj: ldrELF.obj
1487
1488
1489#
1490# Doxygen documentation.
1491#
1492IPRT_DOXYFILE_INPUT_DIRS = \
1493 $(PATH_ROOT)/include/iprt \
1494 $(PATH_ROOT)/include/iprt/nocrt \
1495 $(PATH_ROOT)/include/iprt/nocrt/x86 \
1496 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
1497 $(VBOX_PATH_RUNTIME_SRC)/include/internal \
1498 $(VBOX_PATH_RUNTIME_SRC)/common/alloc \
1499 $(VBOX_PATH_RUNTIME_SRC)/common/checksum \
1500 $(VBOX_PATH_RUNTIME_SRC)/common/err \
1501 $(VBOX_PATH_RUNTIME_SRC)/common/ldr \
1502 $(VBOX_PATH_RUNTIME_SRC)/common/log \
1503 $(VBOX_PATH_RUNTIME_SRC)/common/misc \
1504 $(VBOX_PATH_RUNTIME_SRC)/common/string \
1505 $(VBOX_PATH_RUNTIME_SRC)/common/table \
1506 $(VBOX_PATH_RUNTIME_SRC)/common/time \
1507 $(VBOX_PATH_RUNTIME_SRC)/VBox \
1508 $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv,\
1509 $(dir) \
1510 $(dir)/darwin \
1511 $(dir)/l4 \
1512 $(dir)/linux \
1513 $(dir)/nt \
1514 $(dir)/os2 \
1515 $(dir)/win \
1516 $(dir)/win32 \
1517 $(dir)/win64 \
1518 $(dir)/generic \
1519 )
1520
1521# These must come first in order to make things look nice.
1522IPRT_DOXYFILE_INPUT_FIRST =\
1523 $(PATH_ROOT)/include/iprt/cdefs.h \
1524 $(PATH_ROOT)/include/iprt/types.h \
1525 $(PATH_ROOT)/include/iprt/runtime.h \
1526 $(PATH_ROOT)/include/iprt/param.h \
1527 $(PATH_ROOT)/include/iprt/assert.h \
1528 $(PATH_ROOT)/include/iprt/asm.h \
1529
1530IPRT_DOXYFILE_INPUT := \
1531 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(IPRT_DOXYFILE_INPUT_DIRS)))) ) \
1532 $(foreach dir, $(IPRT_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
1533IPRT_DOXYFILE_INPUT := \
1534 $(IPRT_DOXYFILE_INPUT_FIRST) \
1535 $(filter-out $(IPRT_DOXYFILE_INPUT_FIRST), $(IPRT_DOXYFILE_INPUT))
1536
1537
1538IPRT_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/iprt
1539BLDDIRS += $(IPRT_DOXYFILE_OUTPUT)
1540
1541includedep $(IPRT_OUT_DIR)/Doxyfile.iprt.dep
1542
1543# Generate the Doxyfile
1544$(IPRT_OUT_DIR)/Doxyfile.iprt: \
1545 $(VBOX_PATH_RUNTIME_SRC)/Doxyfile \
1546 $(VBOX_PATH_RUNTIME_SRC)/Makefile.kmk \
1547 $(comp-vars IPRT_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
1548 $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
1549 | $$(dir $$@)
1550 $(RM) -f $@ [email protected] [email protected]
1551 $(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile [email protected]
1552 $(APPEND) [email protected]
1553 $(APPEND) [email protected] "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"
1554 $(APPEND) [email protected] "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"
1555 $(APPEND) [email protected] "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table"
1556 $(APPEND) [email protected] "INCLUDE_FILE_PATTERNS = *.cpp.h"
1557 $(APPEND) [email protected] "PREDEFINED += $(ARCH_BITS_DEFS)"
1558 $(APPEND) [email protected]
1559 $(APPEND) [email protected] "INPUT = $(IPRT_DOXYFILE_INPUT)"
1560 $(APPEND) [email protected]
1561 $(MV) -f [email protected] $@
1562 @$(APPEND) [email protected] "DOXYGEN_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)"
1563 @$(APPEND) [email protected] "DOXYGEN_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)"
1564
1565# Do the actual job.
1566$(IPRT_OUT_DIR)/docs.iprt: $(IPRT_OUT_DIR)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) | $(IPRT_DOXYFILE_OUTPUT)/
1567 $(RM) -f $(wildcard $(IPRT_DOXYFILE_OUTPUT)/html/*) $(IPRT_OUT_DIR)/docs.iprt
1568 doxygen $(IPRT_OUT_DIR)/Doxyfile.iprt
1569 $(APPEND) $(IPRT_OUT_DIR)/docs.iprt
1570
1571# aliases
1572docs.iprt: $(IPRT_OUT_DIR)/docs.iprt
1573if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
1574docs: $(IPRT_OUT_DIR)/docs.iprt
1575endif
1576
1577test-doxygen::
1578 @echo test-$(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
1579 @echo $(IPRT_DOXYFILE_OUTPUT)
1580 @echo $(DOXYGEN_OUTPUT_PREV)
1581 @echo $(IPRT_DOXYFILE_INPUT)
1582
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