VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/VBoxNetAdp/linux/Makefile@ 78363

Last change on this file since 78363 was 77403, checked in by vboxsync, 6 years ago

More linux kernel module Makefile cleanups: Simplified VBOXMOD_INCL by making -I implicit.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1# $Id: Makefile 77403 2019-02-20 18:44:36Z vboxsync $
2## @file
3# Makefile for the VirtualBox Linux Host Virtual Network Adapter Driver.
4#
5
6#
7# Copyright (C) 2006-2019 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# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27# Find the directory of this makefile.
28VBOXNETADPT_DIR := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
29
30# Linux kbuild sets this to our source directory if we are called from there
31obj ?= $(CURDIR)
32include $(obj)/Makefile-header.gmk
33
34VBOXMOD_NAME = vboxnetadp
35VBOXMOD_OBJS = \
36 linux/VBoxNetAdp-linux.o \
37 VBoxNetAdp.o
38ifeq ($(BUILD_TARGET_ARCH),x86)
39VBOXMOD_OBJS += \
40 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
48VBOXMOD_INCL = \
49 $(VBOXNETADPT_DIR) \
50 $(VBOXNETADPT_DIR)include \
51 $(VBOXNETADPT_DIR)r0drv/linux
52VBOXMOD_DEFS = \
53 RT_OS_LINUX \
54 IN_RING0 \
55 IN_RT_R0 \
56 IN_SUP_R0 \
57 VBOX \
58 RT_WITH_VBOX \
59 VBOX_WITH_HARDENING \
60 VBOX_WITH_64_BITS_GUESTS # <-- must be consistent with Config.kmk!
61VBOXMOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h -fno-pie -Wno-declaration-after-statement
62
63include $(obj)/Makefile-footer.gmk
64
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