Changeset 22683 in vbox
- Timestamp:
- Sep 1, 2009 5:53:07 PM (15 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r21461 r22683 26 26 # Target config. 27 27 # 28 LIBRARIES += \ 29 VBoxGuestR0Lib \ 30 VBoxGuestR0LibBase 28 ifdef VBOX_WITH_ADDITION_DRIVERS 29 LIBRARIES += \ 30 VBoxGuestR0Lib \ 31 VBoxGuestR0LibBase 32 endif 31 33 LIBRARIES += \ 32 34 VBoxGuestR3Lib \ … … 34 36 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd) 35 37 LIBRARIES += \ 36 VBoxGuestR3LibXFree86 37 endif 38 39 ifndef VBOX_WITH_ADDITION_DRIVERS 40 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0. 41 LIBRARIES := $(filter-out VBoxGuestR0Lib VBoxGuestR0LibBase, $(LIBRARIES)) 42 endif 38 VBoxGuestR3LibXFree86 43 39 endif 44 40 -
trunk/src/VBox/GuestHost/HGSMI/Makefile.kmk
r22652 r22683 23 23 include $(KBUILD_PATH)/subheader.kmk 24 24 25 #26 # HGSMIGuestR0Lib - for guest additions drivers27 #28 LIBRARIES += \29 HGSMIGuestR0Lib30 25 31 #32 # HGSMIHostLib - for host devices (R3 only)33 #34 LIBRARIES += \35 HGSMIHostR3Lib36 37 ifndef VBOX_WITH_ADDITION_DRIVERS38 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip HGSMIGuestR0Lib.39 LIBRARIES := $(filter-out HGSMIGuestR0Lib, $(LIBRARIES))40 endif41 endif42 26 43 27 44 28 # 45 # HGSMIGuestR0Lib 29 # HGSMIGuestR0Lib - For guest additions drivers. 46 30 # 31 ifdef VBOX_WITH_ADDITION_DRIVERS 32 LIBRARIES += HGSMIGuestR0Lib 47 33 HGSMIGuestR0Lib_TEMPLATE = VBOXGUESTR0LIB 48 34 HGSMIGuestR0Lib_DEFS = 49 35 HGSMIGuestR0Lib_SOURCES = \ 50 36 HGSMICommon.cpp 37 endif 51 38 52 39 # 53 # HGSMIHost R3Lib40 # HGSMIHostLib - For host devices (R3 only). 54 41 # 42 LIBRARIES += HGSMIHostR3Lib 55 43 HGSMIHostR3Lib_TEMPLATE = VBOXR3 56 44 HGSMIHostR3Lib_DEFS = -
trunk/src/VBox/Runtime/Makefile.kmk
r22573 r22683 36 36 # Only build the additions, sort out the legacy names first. 37 37 # 38 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini 39 #LIBRARIES.os2 = RuntimeGuestR0OS2Warp3 38 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini 39 ifdef VBOX_WITH_ADDITION_DRIVERS 40 LIBRARIES += RuntimeGuestR0 41 endif 42 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3 40 43 LIBRARIES.win.x86 += RuntimeGuestR0NT4 41 ifndef VBOX_WITH_ADDITION_DRIVERS42 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.43 LIBRARIES := $(filter-out RuntimeGuestR0, $(LIBRARIES))44 endif45 endif46 44 47 45 else ifdef VBOX_ONLY_DOCS … … 65 63 endif 66 64 ifdef VBOX_WITH_ADDITIONS 67 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini 65 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini 66 ifdef VBOX_WITH_ADDITION_DRIVERS 67 LIBRARIES += RuntimeGuestR0 68 endif 68 69 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3 69 70 LIBRARIES.win.x86 += RuntimeGuestR0NT4 70 ifndef VBOX_WITH_ADDITION_DRIVERS71 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.72 LIBRARIES := $(filter-out RuntimeGuestR0, $(LIBRARIES))73 endif74 endif75 71 endif # VBOX_WITH_ADDITIONS 76 72 LIBRARIES.l4 += RuntimeR3L4 RuntimeLnxHostR3
Note:
See TracChangeset
for help on using the changeset viewer.