1 | # $Id: Makefile.kmk 12446 2008-09-14 23:32:31Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the VirtualBox Linux Guest Additions Kernel Module.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | # additional information or have any questions.
|
---|
20 | #
|
---|
21 |
|
---|
22 | SUB_DEPTH = ../../../../..
|
---|
23 | include $(KBUILD_PATH)/subheader.kmk
|
---|
24 |
|
---|
25 | INSTALLS += vboxmod-mod vboxmod-sh
|
---|
26 | OTHERS.linux += \
|
---|
27 | $(VBOX_PATH_ADDITIONS)/src/vboxadd/build_in_tmp \
|
---|
28 | $(if $(VBOX_OSE),,$(VBOX_PATH_ADDITIONS)/src/vboxadd/dkms.conf)
|
---|
29 | ifdef VBOX_WITH_ADDITION_DRIVERS
|
---|
30 | SYSMODS += vboxadd
|
---|
31 | endif
|
---|
32 |
|
---|
33 | #
|
---|
34 | # Populate FILES_VBOXADD_NOBIN
|
---|
35 | #
|
---|
36 | include $(PATH_SUB_CURRENT)/files_vboxadd
|
---|
37 |
|
---|
38 | $(VBOX_PATH_ADDITIONS)/src/vboxadd/build_in_tmp: \
|
---|
39 | $(PATH_ROOT)/src/VBox/HostDrivers/Support/linux/build_in_tmp \
|
---|
40 | $(VBOX_VERSION_STAMP) \
|
---|
41 | | $(call DIRDEP,$(VBOX_PATH_ADDITIONS)/src/vboxadd)
|
---|
42 | $(call MSG_TOOL,Creating,,$@)
|
---|
43 | $(QUIET)$(SED) -e "s;_VERSION_;${VBOX_VERSION_STRING};g; s;_MODULE_;vboxadd;g" < $< > $@
|
---|
44 | $(QUIET)chmod 0755 $@
|
---|
45 |
|
---|
46 | $(VBOX_PATH_ADDITIONS)/src/vboxadd/dkms.conf: \
|
---|
47 | $(PATH_SUB_CURRENT)/dkms.conf \
|
---|
48 | $(VBOX_VERSION_STAMP)
|
---|
49 | $(call MSG_TOOL,Creating,,$@)
|
---|
50 | $(QUIET)$(SED) -e "s;_VERSION_;${VBOX_VERSION_STRING};g" < $< > $@
|
---|
51 |
|
---|
52 | vboxmod-mod_INST = $(INST_ADDITIONS)src/vboxadd/
|
---|
53 | vboxmod-mod_MODE = a+r,u+w
|
---|
54 | vboxmod-mod_SOURCES = $(subst ",,$(FILES_VBOXADD_NOBIN))
|
---|
55 |
|
---|
56 | #
|
---|
57 | # The module (for syntax checking).
|
---|
58 | #
|
---|
59 | vboxadd_TEMPLATE = VBOXGUESTR0
|
---|
60 | vboxadd_NOINST = 1
|
---|
61 | vboxadd_DEFS = \
|
---|
62 | MODULE IN_RT_R0 VBGL_VBOXGUEST EXPORT_SYMTAB VBGL_HGCM VBOX_WITH_HGCM \
|
---|
63 | KBUILD_MODNAME=KBUILD_STR\(vboxadd\) \
|
---|
64 | KBUILD_BASENAME=KBUILD_STR\(vboxadd\)
|
---|
65 | vboxadd_INCS = $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux
|
---|
66 | vboxadd_SOURCES = \
|
---|
67 | vboxmod.c \
|
---|
68 | cmc.c \
|
---|
69 | hgcmcall.c
|
---|
70 | vboxadd_LIBS = \
|
---|
71 | $(VBOX_LIB_VBGL_R0BASE) \
|
---|
72 | $(VBOX_LIB_IPRT_GUEST_R0)
|
---|
73 |
|
---|
74 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
75 |
|
---|