1 | # $Id: Makefile.kmk 28998 2010-05-04 09:44:57Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the vboxsf (linux shared folders module).
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | PROGRAMS += mount.vboxsf
|
---|
22 | INSTALLS += vboxsf-mod vboxsf-sh
|
---|
23 | ifdef VBOX_WITH_ADDITION_DRIVERS
|
---|
24 | SYSMODS += vboxsf
|
---|
25 | endif
|
---|
26 |
|
---|
27 | #
|
---|
28 | # Populate FILES_VBOXSF_NOBIN
|
---|
29 | #
|
---|
30 | include $(PATH_SUB_CURRENT)/files_vboxsf
|
---|
31 |
|
---|
32 | vboxsf-mod_INST = $(INST_ADDITIONS)src/vboxsf/
|
---|
33 | vboxsf-mod_MODE = a+r,u+w
|
---|
34 | vboxsf-mod_SOURCES = $(subst ",,$(FILES_VBOXSF_NOBIN))
|
---|
35 | vboxsf-mod_SOURCES += $(if $(VBOX_OSE),,\
|
---|
36 | $(PATH_vboxsf-mod)/dkms.conf)
|
---|
37 | vboxsf-mod_CLEAN += $(PATH_vboxsf-mod)/dkms.conf
|
---|
38 |
|
---|
39 | vboxsf-sh_INST = $(INST_ADDITIONS)src/vboxsf/
|
---|
40 | vboxsf-sh_MODE = a+rx,u+w
|
---|
41 | vboxsf-sh_SOURCES = $(subst ",,$(FILES_VBOXSF_BIN))
|
---|
42 | vboxsf-sh_SOURCES += \
|
---|
43 | $(PATH_vboxsf-sh)/build_in_tmp \
|
---|
44 | $(if $(VBOX_OSE),,\
|
---|
45 | $(PATH_ROOT)/src/VBox/HostDrivers/linux/do_Module.symvers)
|
---|
46 | vboxsf-sh_CLEAN += $(PATH_vboxsf-sh)/build_in_tmp
|
---|
47 |
|
---|
48 |
|
---|
49 | #
|
---|
50 | # The module (for syntax checking).
|
---|
51 | # The DEBUG_HASH* stuff is for CONFIG_DYNAMIC_DEBUG-enabled kernels
|
---|
52 | #
|
---|
53 | vboxsf_TEMPLATE = VBOXGUESTR0
|
---|
54 | vboxsf_NOINST = 1
|
---|
55 | vboxsf_CFLAGS = -fshort-wchar
|
---|
56 | vboxsf_DEFS = \
|
---|
57 | MODULE IN_RT_R0 VBOXGUEST VBOX_WITH_HGCM \
|
---|
58 | KBUILD_MODNAME=KBUILD_STR\(vboxsf\) \
|
---|
59 | KBUILD_BASENAME=KBUILD_STR\(vboxsf\) \
|
---|
60 | DEBUG_HASH=2 DEBUG_HASH2=3
|
---|
61 | vboxsf_INCS = \
|
---|
62 | $(PATH_ROOT)/src/VBox/Additions/common/VBoxGuestLib \
|
---|
63 | $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux
|
---|
64 | vboxsf_SOURCES = \
|
---|
65 | vfsmod.c \
|
---|
66 | utils.c \
|
---|
67 | dirops.c \
|
---|
68 | regops.c
|
---|
69 | vboxsf_LIBS = \
|
---|
70 | $(VBOX_LIB_VBGL_R0)
|
---|
71 |
|
---|
72 | # detect fc6 2.6.18
|
---|
73 | vboxsf_DEFS += $(foreach inc,$(VBOX_LINUX_INCS),\
|
---|
74 | $(if $(wildcard $(inc)/linux/utsrelease.h),\
|
---|
75 | $(if $(shell if grep -q '"2.6.18.*fc6.*"' $(inc)/linux/utsrelease.h;\
|
---|
76 | then echo yes; fi),KERNEL_FC6,),))
|
---|
77 | # detect rhel5 2.6.18
|
---|
78 | vboxsf_DEFS += $(foreach inc,$(VBOX_LINUX_INCS),\
|
---|
79 | $(if $(wildcard $(inc)/linux/utsrelease.h),\
|
---|
80 | $(if $(shell if grep -q '"2.6.18.*el5.*"' $(inc)/linux/utsrelease.h;\
|
---|
81 | then echo yes; fi),KERNEL_FC6,),))
|
---|
82 |
|
---|
83 |
|
---|
84 | #
|
---|
85 | # The mount util.
|
---|
86 | #
|
---|
87 | mount.vboxsf_TEMPLATE = VBOXGUESTR3EXE
|
---|
88 | mount.vboxsf_DEFS = _GNU_SOURCE
|
---|
89 | mount.vboxsf_SOURCES = \
|
---|
90 | mount.vboxsf.c
|
---|
91 |
|
---|
92 |
|
---|
93 | ## Scripts needed for building kernel modules
|
---|
94 |
|
---|
95 | $$(PATH_vboxsf-sh)/build_in_tmp: \
|
---|
96 | $(PATH_ROOT)/src/VBox/HostDrivers/linux/build_in_tmp \
|
---|
97 | $(VBOX_VERSION_STAMP) \
|
---|
98 | | $$(dir $$@)
|
---|
99 | $(call MSG_TOOL,Creating,,$@)
|
---|
100 | $(QUIET)$(SED) -e "s;_VERSION_;${VBOX_VERSION_STRING};g; s;_MODULE_;vboxsf;g; s;_BUILDTYPE_;${KBUILD_TYPE};g" --output $@ $<
|
---|
101 | $(QUIET)chmod 0755 $@
|
---|
102 |
|
---|
103 | $$(PATH_vboxsf-mod)/dkms.conf: \
|
---|
104 | $(PATH_SUB_CURRENT)/dkms.conf \
|
---|
105 | $(VBOX_VERSION_STAMP) \
|
---|
106 | | $$(dir $$@)
|
---|
107 | $(call MSG_TOOL,Creating,,$@)
|
---|
108 | $(QUIET)$(SED) -e "s;_VERSION_;${VBOX_VERSION_STRING};g" --output $@ $<
|
---|
109 |
|
---|
110 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
111 |
|
---|