Changeset 6756 in vbox for trunk/src/VBox
- Timestamp:
- Feb 2, 2008 8:21:39 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27838
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/Makefile.kmk
r6700 r6756 56 56 include $(PATH_SUB_CURRENT)/WINNT/Makefile.kmk 57 57 endif 58 ## @todo Convert linux and x11 to sub-makefiles too.59 58 ifdef VBOX_WITH_LINUX_ADDITIONS 60 SUBDIRS += linux x11 59 SUBDIRS += linux 60 #include $(PATH_SUB_CURRENT)/linux/Makefile.kmk 61 include $(PATH_SUB_CURRENT)/x11/Makefile.kmk 61 62 else if1of ($(BUILD_TARGET), solaris) 62 SUBDIRS += x1163 include $(PATH_SUB_CURRENT)/x11/Makefile.kmk 63 64 endif 64 65 -
trunk/src/VBox/Additions/x11/Makefile.kmk
r6675 r6756 19 19 include $(PATH_KBUILD)/subheader.kmk 20 20 21 # Include sub-dirs. 22 SUBDIRS = 21 # Include sub-makefiles. 23 22 if1of ($(BUILD_TARGET),l4 linux solaris) 24 SUBDIRS += \ 25 xclient \ 26 xgraphics \ 27 xmouse 23 include $(PATH_SUB_CURRENT)/xclient/Makefile.kmk 24 include $(PATH_SUB_CURRENT)/xgraphics/Makefile.kmk 25 include $(PATH_SUB_CURRENT)/xmouse/Makefile.kmk 28 26 endif 29 27 -
trunk/src/VBox/Additions/x11/xclient/Makefile.kmk
r6707 r6756 1 1 # $Id$ 2 2 ## @file 3 # Makefile for the VirtualBox Guest Addition X11 Client.3 # Sub-Makefile for the VirtualBox Guest Addition X11 Client. 4 4 # 5 5 … … 16 16 # 17 17 18 DEPTH = ../../../../.. 19 include $(PATH_KBUILD)/header.kmk 18 DEPTH ?= ../../../../.. 19 SUB_DEPTH = ../.. 20 include $(PATH_KBUILD)/subheader.kmk 20 21 21 22 # … … 88 89 endif 89 90 90 include $(PATH_KBUILD)/ footer.kmk91 include $(PATH_KBUILD)/subfooter.kmk -
trunk/src/VBox/Additions/x11/xgraphics/Makefile.kmk
r6712 r6756 1 1 # $Id$ 2 2 ## @file 3 # Makefile for the VBox Linux Additions X.org graphics driver.3 # Sub-Makefile for the VBox Linux Additions X.org graphics driver. 4 4 # 5 5 … … 16 16 # 17 17 18 DEPTH = ../../../../.. 19 include $(PATH_KBUILD)/header.kmk 18 DEPTH ?= ../../../../.. 19 SUB_DEPTH = ../.. 20 include $(PATH_KBUILD)/subheader.kmk 20 21 21 22 # … … 179 180 180 181 181 include $(PATH_KBUILD)/ footer.kmk182 include $(PATH_KBUILD)/subfooter.kmk -
trunk/src/VBox/Additions/x11/xmouse/Makefile.kmk
r6712 r6756 1 1 # $Id$ 2 2 ## @file 3 # Makefile for the VBox Additions XFree86 and X.org mouse drivers.3 # Sub-Makefile for the VBox Additions XFree86 and X.org mouse drivers. 4 4 # 5 5 … … 16 16 # 17 17 18 DEPTH = ../../../../.. 19 include $(PATH_KBUILD)/header.kmk 18 DEPTH ?= ../../../../.. 19 SUB_DEPTH = ../.. 20 include $(PATH_KBUILD)/subheader.kmk 20 21 21 22 … … 80 81 vboxmouse_drv_71_TEMPLATE = VBOXGUESTR3XORGMOD 81 82 vboxmouse_drv_71_DEFS := $(vboxmouse_drv_70_DEFS) 82 vboxmouse_drv_71_INCS = \83 vboxmouse_drv_71_INCS := \ 83 84 $(VBOX_PATH_X11_XORG_7_1) \ 84 85 $(VBOX_PATH_X11_XORG_7_1)/X11 \ … … 97 98 vboxmouse_drv_14_TEMPLATE = VBOXGUESTR3XORGMOD 98 99 vboxmouse_drv_14_DEFS := $(vboxmouse_drv_70_DEFS) 99 vboxmouse_drv_14_INCS = \100 vboxmouse_drv_14_INCS := \ 100 101 $(VBOX_PATH_X11_XORG_1_4) \ 101 102 $(VBOX_PATH_X11_XORG_1_4)/X11 \ … … 108 109 109 110 110 include $(PATH_KBUILD)/ footer.kmk111 include $(PATH_KBUILD)/subfooter.kmk 111 112
Note:
See TracChangeset
for help on using the changeset viewer.