VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/drm/Makefile.module.kms

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1# $Id: Makefile.module.kms 98103 2023-01-17 14:15:46Z vboxsync $
2## @file
3# VirtualBox Guest Additions Module Makefile.
4#
5# (For 2.6.x this file must be 'Makefile'!)
6#
7
8#
9# Copyright (C) 2006-2023 Oracle and/or its affiliates.
10#
11# This file is part of VirtualBox base platform packages, as
12# available from https://www.virtualbox.org.
13#
14# This program is free software; you can redistribute it and/or
15# modify it under the terms of the GNU General Public License
16# as published by the Free Software Foundation, in version 3 of the
17# License.
18#
19# This program is distributed in the hope that it will be useful, but
20# WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22# General Public License for more details.
23#
24# You should have received a copy of the GNU General Public License
25# along with this program; if not, see <https://www.gnu.org/licenses>.
26#
27# SPDX-License-Identifier: GPL-3.0-only
28#
29
30# Linux kbuild sets this to our source directory if we are called from there
31obj ?= $(CURDIR)
32include $(obj)/Makefile-header.gmk
33VBOXDRM_DIR = $(VBOX_MODULE_SRC_DIR)
34
35# We want to build on Linux 3.11 and later and on all EL 7 kernels.
36VBOX_BUILD =
37ifneq ($(filter-out 1.% 2.% 3.0 3.0.% 3.1 3.1.% 3.2 3.2.% 3.3 3.3.% 3.4 3.4.% 3.5 3.5.% 3.6 3.6.% 3.7 3.7.% 3.8 3.8.% 3.9 3.9.% 3.10 3.10.%,$(KERN_VER)),)
38 VBOX_BUILD = 1
39endif
40ifeq ($(filter-out %.el7.x86_64,$(KERN_VER)),)
41 VBOX_BUILD = 1
42endif
43
44ifneq ($(VBOX_BUILD),)
45
46VBOXMOD_NAME = vboxvideo
47VBOXMOD_OBJS = \
48 hgsmi_base.o \
49 modesetting.o \
50 vbox_drv.o \
51 vbox_fb.o \
52 vbox_irq.o \
53 vbox_main.o \
54 vbox_mode.o \
55 vbox_ttm.o \
56 vbva_base.o \
57 vbox_prime.o \
58 vbox_hgsmi.o
59VBOXMOD_INCL = \
60 $(VBOXDRM_DIR) \
61 $(KERN_INCL)/drm
62
63include $(obj)/Makefile-footer.gmk
64
65else # !VBOX_BUILD
66
67 all:
68 install:
69 clean:
70
71endif # !VBOX_BUILD
72
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use