Changeset 17744 in vbox
- Timestamp:
- Mar 12, 2009 1:24:31 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44262
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r17642 r17744 3582 3582 VBOX_LIB_IPRT_GUEST_R3 = $(VBOX_PATH_ADDITIONS_LIB)/RuntimeGuestR3$(VBOX_SUFF_LIB) 3583 3583 VBOX_LIB_IPRT_GUEST_R3_MINI = $(VBOX_PATH_ADDITIONS_LIB)/RuntimeGuestR3Mini$(VBOX_SUFF_LIB) 3584 VBOX_LIB_IPRT_GUEST_R3_SHARED = $(VBOX_PATH_ADDITIONS_LIB)/RuntimeGuestR3Shared$(VBOX_SUFF_LIB) 3584 3585 VBOX_LIB_IPRT_GUEST_R0 = $(VBOX_PATH_ADDITIONS_LIB)/RuntimeGuestR0$(VBOX_SUFF_LIB) 3585 3586 ifeq ($(KBUILD_TARGET_ARCH),x86) -
trunk/src/VBox/Runtime/Makefile.kmk
r17588 r17744 36 36 # Only build the additions, sort out the legacy names first. 37 37 # 38 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3 Mini38 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini 39 39 #LIBRARIES.os2 = RuntimeGuestR0OS2Warp3 40 40 LIBRARIES.win.x86 += RuntimeGuestR0NT4 … … 65 65 endif 66 66 ifdef VBOX_WITH_ADDITIONS 67 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3 Mini67 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini 68 68 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3 69 69 LIBRARIES.win.x86 += RuntimeGuestR0NT4 … … 631 631 632 632 # 633 # RuntimeGuestR3 - Guest Additions Runtime (static ).633 # RuntimeGuestR3 - Guest Additions Runtime (static/exe). 634 634 # (The KBUILD_HOST inheritance here is for l4 cross building the linux 635 635 # additions, while .x86 is for cross building x86 while targeting amd64.) … … 657 657 RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) 658 658 RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH)) 659 660 661 # 662 # RuntimeGuestR3Shared - Guest Additions Runtime (static/dll). 663 # 664 RuntimeGuestR3Shared_TEMPLATE := VBOXGUESTR3DLL 665 RuntimeGuestR3Shared_EXTENDS := RuntimeGuestR3 659 666 660 667
Note:
See TracChangeset
for help on using the changeset viewer.