1 | # $Id: Makefile.kmk 56293 2015-06-09 14:23:56Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the PCI passthru driver (VBoxPci).
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2011-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 |
|
---|
18 | SUB_DEPTH = ../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 | if1of ($(KBUILD_TARGET), linux)
|
---|
21 |
|
---|
22 | ifdef VBOX_WITH_VBOXDRV
|
---|
23 | #
|
---|
24 | # The driver.
|
---|
25 | # Note! For Linux, this is just a compile test. Don't use the binary!
|
---|
26 | #
|
---|
27 | SYSMODS += VBoxPci
|
---|
28 | VBoxPci_TEMPLATE = VBOXR0DRV
|
---|
29 | VBoxPci_INST = $(INST_VBOXPCI)$(if $(eq $(KBUILD_TARGET),darwin),Contents/MacOS/)
|
---|
30 | VBoxPci_NAME.linux = vboxpci
|
---|
31 | VBoxPci_DEFS = IN_RT_R0 VBOX_SVN_REV=$(VBOX_SVN_REV) IN_SUP_STATIC
|
---|
32 | VBoxPci_DEFS.linux = KBUILD_MODNAME=KBUILD_STR\(vboxpci\) KBUILD_BASENAME=KBUILD_STR\(vboxpci\) MODULE
|
---|
33 | VBoxPci_INCS.linux := \
|
---|
34 | $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux
|
---|
35 | VBoxPci_INCS = \
|
---|
36 | .
|
---|
37 | VBoxPci_SOURCES.linux = \
|
---|
38 | linux/VBoxPci-linux.c
|
---|
39 | VBoxPci_SOURCES = \
|
---|
40 | VBoxPci.c
|
---|
41 | VBoxPci_LIBS += \
|
---|
42 | $(PATH_STAGE_LIB)/SUPR0IdcClient$(VBOX_SUFF_LIB)
|
---|
43 | endif
|
---|
44 |
|
---|
45 | #
|
---|
46 | # Install the sources.
|
---|
47 | #
|
---|
48 | include $(PATH_SUB_CURRENT)/linux/files_vboxpci
|
---|
49 | INSTALLS += VBoxPci-src
|
---|
50 | VBoxPci-src_INST = bin/src/vboxpci/
|
---|
51 | VBoxPci-src_SOURCES = \
|
---|
52 | $(subst $(DQUOTE),,$(VBOX_VBOXPCI_SOURCES)) \
|
---|
53 | $(VBoxPci-src_0_OUTDIR)/Makefile
|
---|
54 | VBoxPci-src_EXEC_SOURCES = \
|
---|
55 | $(PATH_ROOT)/src/VBox/HostDrivers/linux/do_Module.symvers
|
---|
56 | VBoxPci-src_CLEAN = \
|
---|
57 | $(VBoxPci-src_0_OUTDIR)/Makefile \
|
---|
58 | $(PATH_TARGET)/VBoxPciSrc-src-1.dep \
|
---|
59 |
|
---|
60 | # Generate the scripts needed for building the kernel module.
|
---|
61 |
|
---|
62 | includedep $(PATH_TARGET)/VBoxPci-src-1.dep
|
---|
63 | $$(VBoxPci-src_0_OUTDIR)/Makefile: \
|
---|
64 | $(PATH_SUB_CURRENT)/linux/Makefile \
|
---|
65 | $$(if $$(eq $$(VBoxPci/linux/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \
|
---|
66 | | $$(dir $$@)
|
---|
67 | $(QUIET)$(RM) -f -- $@
|
---|
68 | ifndef VBOX_WITH_HARDENING
|
---|
69 | $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $<
|
---|
70 | else
|
---|
71 | $(QUIET)$(CP) -f $< $@
|
---|
72 | endif
|
---|
73 | %$(QUIET2)$(APPEND) -t '$(PATH_TARGET)/VBoxPci-src-1.dep' 'VBoxPci/linux/Makefile_VBOX_HARDENED=$(VBOX_WITH_HARDENING)'
|
---|
74 |
|
---|
75 | endif # Supported platform.
|
---|
76 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
77 |
|
---|