VirtualBox

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

Last change on this file since 93115 was 93115, checked in by vboxsync, 2 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1# $Id: Makefile.module.kms 93115 2022-01-01 11:31: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-2022 Oracle Corporation
10#
11# This file is part of VirtualBox Open Source Edition (OSE), as
12# available from http://www.virtualbox.org. This file is free software;
13# you can redistribute it and/or modify it under the terms of the GNU
14# General Public License (GPL) as published by the Free Software
15# Foundation, in version 2 as it comes in the "COPYING" file of the
16# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18#
19
20# Linux kbuild sets this to our source directory if we are called from there
21obj ?= $(CURDIR)
22include $(obj)/Makefile-header.gmk
23VBOXDRM_DIR = $(VBOX_MODULE_SRC_DIR)
24
25# We want to build on Linux 3.11 and later and on all EL 7 kernels.
26VBOX_BUILD =
27ifneq ($(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)),)
28 VBOX_BUILD = 1
29endif
30ifeq ($(filter-out %.el7.x86_64,$(KERN_VER)),)
31 VBOX_BUILD = 1
32endif
33
34ifneq ($(VBOX_BUILD),)
35
36VBOXMOD_NAME = vboxvideo
37VBOXMOD_OBJS = \
38 hgsmi_base.o \
39 modesetting.o \
40 vbox_drv.o \
41 vbox_fb.o \
42 vbox_irq.o \
43 vbox_main.o \
44 vbox_mode.o \
45 vbox_ttm.o \
46 vbva_base.o \
47 vbox_prime.o \
48 vbox_hgsmi.o
49VBOXMOD_INCL = \
50 $(VBOXDRM_DIR) \
51 $(KERN_INCL)/drm
52
53include $(obj)/Makefile-footer.gmk
54
55else # !VBOX_BUILD
56
57 all:
58 install:
59 clean:
60
61endif # !VBOX_BUILD
62
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use