VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/Makefile@ 73892

Last change on this file since 73892 was 69371, checked in by vboxsync, 7 years ago

HostDrivers: more scm updates

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1#
2# Makefile for the VirtualBox Linux Host Network Filter Driver.
3#
4
5#
6# Copyright (C) 2006-2017 Oracle Corporation
7#
8# This file is part of VirtualBox Open Source Edition (OSE), as
9# available from http://www.virtualbox.org. This file is free software;
10# you can redistribute it and/or modify it under the terms of the GNU
11# General Public License (GPL) as published by the Free Software
12# Foundation, in version 2 as it comes in the "COPYING" file of the
13# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15#
16# The contents of this file may alternatively be used under the terms
17# of the Common Development and Distribution License Version 1.0
18# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19# VirtualBox OSE distribution, in which case the provisions of the
20# CDDL are applicable instead of those of the GPL.
21#
22# You may elect to license modified versions of this file under the
23# terms and conditions of either the GPL or the CDDL or both.
24#
25
26# Linux kbuild sets this to our source directory if we are called from
27# there
28obj ?= $(CURDIR)
29include $(obj)/Makefile.include.header
30
31MOD_NAME = vboxnetflt
32MOD_OBJS = \
33 linux/VBoxNetFlt-linux.o \
34 VBoxNetFlt.o \
35 SUPR0IdcClient.o \
36 SUPR0IdcClientComponent.o \
37 linux/SUPR0IdcClient-linux.o
38
39ifeq ($(BUILD_TARGET_ARCH),x86)
40MOD_OBJS += math/gcc/divdi3.o \
41 math/gcc/moddi3.o \
42 math/gcc/qdivrem.o \
43 math/gcc/udivdi3.o \
44 math/gcc/udivmoddi4.o \
45 math/gcc/divdi3.o \
46 math/gcc/umoddi3.o
47endif
48
49MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
50MOD_DEFS = -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 \
51 -DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -DVBOX_WITH_HARDENING \
52 -Wno-declaration-after-statement
53ifeq ($(BUILD_TARGET_ARCH),amd64)
54 MOD_DEFS += -DRT_ARCH_AMD64
55else
56 MOD_DEFS += -DRT_ARCH_X86
57endif
58# must be consistent with Config.kmk!
59MOD_DEFS += -DVBOX_WITH_64_BITS_GUESTS
60
61# By default we use remap_pfn_range() kernel API to make kernel pages
62# visible for userland. Unfortunately, it leads to situation that
63# during debug session all structures on that page (such as PVM pointer)
64# are not accessible to the debugger (see #3214).
65# This code enables experimental support
66# for vm_insert_page() kernel API, allowing to export kernel pages
67# to the userland in more debugger-friendly way. Due to stability
68# concerns, not enabled by default yet.
69ifdef VBOX_USE_INSERT_PAGE
70 KFLAGS += -DVBOX_USE_INSERT_PAGE
71endif
72
73# build defs
74MOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h -fno-pie
75
76include $(obj)/Makefile.include.footer
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette