VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/linux/Makefile@ 67981

Last change on this file since 67981 was 66222, checked in by vboxsync, 7 years ago

HostDrivers, Additions: don't use three stars as this string is used in 'make' errors as well

  • Property svn:eol-style set to native
File size: 3.3 KB
Line 
1#
2# Makefile for the VirtualBox Linux Host Drivers.
3#
4
5#
6#
7# Copyright (C) 2008-2015 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
18ifneq ($(KBUILD_EXTMOD),)
19
20# Building from kBuild (make -C <kernel_directory> M=`pwd`).
21# KBUILD_EXTMOD is set to $(M) in this case.
22
23obj-m = vboxdrv/
24ifneq ($(wildcard $(KBUILD_EXTMOD)/vboxnetflt/Makefile),)
25 obj-m += vboxnetflt/
26endif
27ifneq ($(wildcard $(KBUILD_EXTMOD)/vboxnetadp/Makefile),)
28 obj-m += vboxnetadp/
29endif
30ifneq ($(wildcard $(KBUILD_EXTMOD)/vboxpci/Makefile),)
31 obj-m += vboxpci/
32endif
33else # ! KBUILD_EXTMOD
34
35# convenience Makefile without KBUILD_EXTMOD
36
37KBUILD_VERBOSE =
38
39all:
40 @echo "=== Building 'vboxdrv' module ==="
41 @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxdrv
42 @cp vboxdrv/vboxdrv.ko .
43 @echo
44 @if [ -d vboxnetflt ]; then \
45 if [ -f vboxdrv/Module.symvers ]; then \
46 cp vboxdrv/Module.symvers vboxnetflt; \
47 fi; \
48 echo "=== Building 'vboxnetflt' module ==="; \
49 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxnetflt || exit 1; \
50 cp vboxnetflt/vboxnetflt.ko .; \
51 echo; \
52 fi
53 @if [ -d vboxnetadp ]; then \
54 if [ -f vboxdrv/Module.symvers ]; then \
55 cp vboxdrv/Module.symvers vboxnetadp; \
56 fi; \
57 echo "=== Building 'vboxnetadp' module ==="; \
58 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxnetadp || exit 1; \
59 cp vboxnetadp/vboxnetadp.ko .; \
60 echo; \
61 fi
62 @if [ -d vboxpci ]; then \
63 if [ -f vboxdrv/Module.symvers ]; then \
64 cp vboxdrv/Module.symvers vboxpci; \
65 fi; \
66 echo "=== Building 'vboxpci' module ==="; \
67 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxpci || exit 1; \
68 cp vboxpci/vboxpci.ko .; \
69 echo; \
70 fi
71
72install:
73 @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxdrv install
74 @if [ -d vboxnetflt ]; then \
75 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxnetflt install; \
76 fi
77 @if [ -d vboxnetadp ]; then \
78 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxnetadp install; \
79 fi
80 @if [ -d vboxpci ]; then \
81 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxpci install; \
82 fi
83
84clean:
85 @$(MAKE) -C vboxdrv clean
86 @if [ -d vboxnetflt ]; then \
87 $(MAKE) -C vboxnetflt clean; \
88 fi
89 @if [ -d vboxnetadp ]; then \
90 $(MAKE) -C vboxnetadp clean; \
91 fi
92 @if [ -d vboxpci ]; then \
93 $(MAKE) -C vboxpci clean; \
94 fi
95 rm -f vboxdrv.ko vboxnetflt.ko vboxnetadp.ko vboxpci.ko
96
97check:
98 @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxdrv check
99
100unload:
101 @for module in vboxpci vboxnetadp vboxnetflt vboxdrv; do \
102 if grep "^$$module " /proc/modules >/dev/null; then \
103 echo "Removing previously installed $$module module"; \
104 /sbin/rmmod $$module; \
105 fi; \
106 done
107
108load: unload
109 @for module in vboxdrv vboxnetflt vboxnetadp vboxpci; do \
110 if test -f $$module.ko; then \
111 echo "Installing $$module module"; \
112 /sbin/insmod $$module.ko; \
113 fi; \
114 done
115
116endif # ! KBUILD_EXTMOD
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use