Changeset 9642 in vbox for trunk/src/VBox
- Timestamp:
- Jun 12, 2008 12:41:39 AM (17 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/Makefile.kmk
r9639 r9642 2 2 ## @file 3 3 # Top-level makefile for the VirtualBox Guest Additions. 4 #5 # Cross building of the additions is generally done by remote building6 # by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting KBUILD_TARGET7 # to the desired target.8 #9 # Limited support for cross building the windows additions using wine10 # is provided. There are a couple of issues with the approach (lack of11 # signing, no VC++ 8 support, ++) that makes it unsuitable for releases.12 #13 # Building the linux additions as part of the l4 build is ok because14 # l4 is built on a linux platform. This is why we have to check if15 # KBUILD_TARGET is l4 or linux in some places, though most of the magic16 # is done in the templates (Config.kmk).17 4 # 18 5 … … 36 23 include $(KBUILD_PATH)/subheader.kmk 37 24 25 # 26 # Cross building of the additions is generally done by remote building 27 # by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting KBUILD_TARGET 28 # and KBUILD_TARGET_ARCH to the desired target and architecture. 29 # 30 # Limited support for cross building the windows additions using wine 31 # is provided. There are a couple of issues with the approach (lack of 32 # signing, no VC++ 8 support, ++) that makes it unsuitable for releases. 33 # 38 34 # 39 35 # Note! VBOX_WITH_ADDITIONS is checked for by our parent makefile. -
trunk/src/VBox/Additions/linux/Makefile.kmk
r9252 r9642 24 24 include $(KBUILD_PATH)/subheader.kmk 25 25 26 # This can only be built on a real Linux system. 27 if1of ($(KBUILD_TARGET),linux l4) 28 include $(PATH_SUB_CURRENT)/module/Makefile.kmk 29 include $(PATH_SUB_CURRENT)/daemon/Makefile.kmk 30 include $(PATH_SUB_CURRENT)/sharedfolders/Makefile.kmk 31 endif 26 include $(PATH_SUB_CURRENT)/module/Makefile.kmk 27 include $(PATH_SUB_CURRENT)/daemon/Makefile.kmk 28 include $(PATH_SUB_CURRENT)/sharedfolders/Makefile.kmk 32 29 33 30 ifndef VBOX_OSE … … 39 36 40 37 VBOX_PATH_LINUX_ADDITION_INSTALLER := $(PATH_SUB_CURRENT)/installer 41 VBOX_PATH_X11_ADDITION_INSTALLER := $(PATH_ROOT)/src/VBox/Additions/x11/installer38 VBOX_PATH_X11_ADDITION_INSTALLER := $(PATH_ROOT)/src/VBox/Additions/x11/installer 42 39 43 40 include $(KBUILD_PATH)/subfooter.kmk -
trunk/src/VBox/Additions/x11/Makefile.kmk
r8760 r9642 24 24 25 25 # Include sub-makefiles. 26 if1of ($(KBUILD_TARGET), freebsd l 4 linuxsolaris)26 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris) 27 27 include $(PATH_SUB_CURRENT)/xclient/Makefile.kmk 28 28 include $(PATH_SUB_CURRENT)/xgraphics/Makefile.kmk -
trunk/src/VBox/Additions/x11/xgraphics/Makefile.kmk
r9540 r9642 27 27 # vboxvideo_drv 28 28 # 29 if1of ($(KBUILD_TARGET), linux l4)29 if1of ($(KBUILD_TARGET), linux) 30 30 SYSMODS += vboxvideo_drv 31 31 vboxvideo_drv_TEMPLATE = VBOXGUESTR3XF86MOD … … 103 103 vboxvideo_68.c \ 104 104 vboxutils_68.c 105 endif # target linux , l4105 endif # target linux 106 106 107 107 … … 116 116 DLLS += vboxvideo_drv_70 117 117 vboxvideo_drv_70_TEMPLATE = VBOXGUESTR3XORGMOD 118 if1of ($(KBUILD_TARGET), l 4 linux)118 if1of ($(KBUILD_TARGET), linux) 119 119 vboxvideo_drv_70_CFLAGS += \ 120 120 -Wno-conversion -Wno-unused-parameter $(VBOX_GCC_Wno-variadic-macros) # template? -
trunk/src/VBox/Additions/x11/xmouse/Makefile.kmk
r9540 r9642 28 28 # vboxmouse_drv 29 29 # 30 if1of ($(KBUILD_TARGET), linux l4)30 if1of ($(KBUILD_TARGET), linux) 31 31 SYSMODS += vboxmouse_drv 32 32 vboxmouse_drv_TEMPLATE = VBOXGUESTR3XF86MOD
Note:
See TracChangeset
for help on using the changeset viewer.