1 | # $Id: Makefile.kmk 34484 2010-11-29 17:45:20Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top-level makefile for the VBox Host drivers.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2010 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 | # Include sub-makefiles.
|
---|
22 | include $(PATH_SUB_CURRENT)/Support/Makefile.kmk
|
---|
23 |
|
---|
24 | if !defined(VBOX_ONLY_DOCS) \
|
---|
25 | && !defined(VBOX_ONLY_EXTPACKS) \
|
---|
26 | && !defined(VBOX_ONLY_TESTSUITE)
|
---|
27 | ifdef VBOX_WITH_USB
|
---|
28 | include $(PATH_SUB_CURRENT)/VBoxUSB/Makefile.kmk
|
---|
29 | endif
|
---|
30 | if1of ($(KBUILD_TARGET), darwin solaris win linux freebsd)
|
---|
31 | ifdef VBOX_WITH_NETFLT
|
---|
32 | include $(PATH_SUB_CURRENT)/VBoxNetFlt/Makefile.kmk
|
---|
33 | endif
|
---|
34 | endif
|
---|
35 | if1of ($(KBUILD_TARGET), darwin solaris linux freebsd)
|
---|
36 | ifdef VBOX_WITH_NETADP
|
---|
37 | include $(PATH_SUB_CURRENT)/VBoxNetAdp/Makefile.kmk
|
---|
38 | endif
|
---|
39 | endif
|
---|
40 | ifeq ($(KBUILD_TARGET),darwin)
|
---|
41 | include $(PATH_SUB_CURRENT)/darwin/Makefile.kmk
|
---|
42 | endif
|
---|
43 |
|
---|
44 | if1of ($(KBUILD_TARGET),linux freebsd)
|
---|
45 | #
|
---|
46 | # Install the Makefile for module compilation on Linux and FreeBSD hosts
|
---|
47 | #
|
---|
48 | INSTALLS += HostDrivers-src
|
---|
49 | HostDrivers-src_INST = bin/src/
|
---|
50 | HostDrivers-src_MODE = a+r,u+w
|
---|
51 | HostDrivers-src_SOURCES.linux = linux/Makefile
|
---|
52 | HostDrivers-src_SOURCES.freebsd = freebsd/Makefile
|
---|
53 | endif
|
---|
54 |
|
---|
55 | if1of ($(KBUILD_TARGET),linux)
|
---|
56 | INSTALLS += HostDrivers-dkms-sh
|
---|
57 | HostDrivers-dkms-sh_INST = bin/src/
|
---|
58 | HostDrivers-dkms-sh_MODE = a+rx,u+w
|
---|
59 | HostDrivers-dkms-sh_SOURCES = $(PATH_HostDrivers-dkms-sh)/do_dkms
|
---|
60 | HostDrivers-dkms-sh_CLEAN = $(PATH_HostDrivers-dkms-sh)/do_dkms
|
---|
61 |
|
---|
62 | INSTALLS += HostDrivers-dkms-src
|
---|
63 | HostDrivers-dkms-src_INST = bin/src/
|
---|
64 | HostDrivers-dkms-src_MODE = a+r,u+w
|
---|
65 | HostDrivers-dkms-src_SOURCES = $(PATH_HostDrivers-dkms-src)/dkms.conf
|
---|
66 | HostDrivers-dkms-src_CLEAN = $(PATH_HostDrivers-dkms-src)/dkms.conf
|
---|
67 |
|
---|
68 | $$(PATH_HostDrivers-dkms-src)/dkms.conf: \
|
---|
69 | $(PATH_SUB_CURRENT)/linux/dkms.conf \
|
---|
70 | $(VBOX_VERSION_STAMP) \
|
---|
71 | | $$(dir $$@)
|
---|
72 | $(call MSG_TOOL,Creating,,$@)
|
---|
73 | $(QUIET)$(SED) \
|
---|
74 | -e "s;_VERSION_;${VBOX_VERSION_STRING};g" \
|
---|
75 | -e "s;_OMIT_VBOXNETFLT_;$(if $(VBOX_WITH_NETFLT),,#);g" \
|
---|
76 | -e "s;_OMIT_VBOXNETADP_;$(if $(VBOX_WITH_NETADP),,#);g" \
|
---|
77 | --output $@ $<
|
---|
78 |
|
---|
79 | $$(PATH_HostDrivers-dkms-sh)/do_dkms: \
|
---|
80 | $(PATH_SUB_CURRENT)/linux/do_dkms \
|
---|
81 | $(VBOX_VERSION_STAMP) \
|
---|
82 | | $$(dir $$@)
|
---|
83 | $(call MSG_TOOL,Creating,,$@)
|
---|
84 | $(QUIET)$(SED) \
|
---|
85 | -e "s;_VERSION_;${VBOX_VERSION_STRING};g" \
|
---|
86 | -e "s;_MODULE_;vboxhost;g" \
|
---|
87 | -e "s;_OLDMODULES_;vboxhost vboxdrv vboxnetflt vboxnetadp;g" \
|
---|
88 | --output $@ $<
|
---|
89 |
|
---|
90 | endif
|
---|
91 |
|
---|
92 | if1of ($(KBUILD_TARGET),freebsd)
|
---|
93 | #
|
---|
94 | # Install the export_modules script for tar'ing the module sources on FreeBSD hosts
|
---|
95 | #
|
---|
96 | INSTALLS += HostDrivers-sh
|
---|
97 | HostDrivers-sh_INST = bin/
|
---|
98 | HostDrivers-sh_MODE = a+rx,u+w
|
---|
99 | HostDrivers-sh_SOURCES.freebsd = freebsd/export_modules
|
---|
100 | endif
|
---|
101 | endif # !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_TESTSUITE)
|
---|
102 |
|
---|
103 | # Let kBuild generate the rules.
|
---|
104 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
105 |
|
---|