Changeset 6009 in vbox
- Timestamp:
- Dec 7, 2007 10:21:57 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r6008 r6009 157 157 # Use additions from the build server. 158 158 #VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER = 1 159 # Don't bother with additions. 160 #VBOX_WITHOUT_ADDITIONS = 1 159 161 # Only build the additions (for the build server). 160 162 #VBOX_ONLY_ADDITIONS = 1 -
trunk/src/VBox/Makefile.kmk
r6004 r6009 44 44 endif 45 45 46 ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),) 47 SUBDIRS += Additions 46 ifndef VBOX_WITHOUT_ADDITIONS 47 ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),) 48 SUBDIRS += Additions 49 endif 48 50 endif 49 51 -
trunk/src/VBox/Runtime/Makefile.kmk
r6007 r6009 55 55 56 56 # 57 # Build everything.57 # Normal build. 58 58 # 59 59 BLDPROGS = uniread … … 62 62 LIBRARIES += RuntimeR0Drv 63 63 endif 64 ifdef VBOX_WITH_WIN32_ADDITIONS 65 LIBRARIES += RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0 66 endif 67 ifdef VBOX_WITH_LINUX_ADDITIONS 68 LIBRARIES += RuntimeLnx32GuestR3 69 ifdef VBOX_WITH_LINUX_ADDITIONS_32BIT_R0 70 LIBRARIES += RuntimeLnx32GuestR0 64 ifndef VBOX_WITHOUT_ADDITIONS 65 ifdef VBOX_WITH_WIN32_ADDITIONS 66 LIBRARIES += RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0 71 67 endif 72 endif 73 ifdef VBOX_WITH_OS2_ADDITIONS 74 LIBRARIES += RuntimeOS2GuestR0 RuntimeOS2GuestR3 #RuntimeOS2Warp3GuestR0 75 endif 76 LIBRARIES.l4= RuntimeR3L4 68 ifdef VBOX_WITH_LINUX_ADDITIONS 69 LIBRARIES += RuntimeLnx32GuestR3 70 ifdef VBOX_WITH_LINUX_ADDITIONS_32BIT_R0 71 LIBRARIES += RuntimeLnx32GuestR0 72 endif 73 endif 74 ifdef VBOX_WITH_OS2_ADDITIONS 75 LIBRARIES += RuntimeOS2GuestR0 RuntimeOS2GuestR3 #RuntimeOS2Warp3GuestR0 76 endif 77 endif # !VBOX_WITHOUT_ADDITIONS 78 LIBRARIES.l4 = RuntimeR3L4 77 79 DLLS = VBoxRT 78 80 OTHER_CLEAN = \
Note:
See TracChangeset
for help on using the changeset viewer.