VirtualBox

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

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

Add/linux: Workaround for GNU make that does not sport MAKEFILE_LIST (< 3.80). bugref:9172

  • 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 77504 2019-02-28 12:37:43Z 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-2019 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.1.% 3.2.% 3.3.% 3.4.% 3.5.% 3.6.% 3.7.% 3.8.% 3.9.% 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 include/drm
52## @todo r=bird: -Iinclude/drm is ambigious.
53
54include $(obj)/Makefile-footer.gmk
55
56else # !VBOX_BUILD
57
58 all:
59 install:
60 clean:
61
62endif # !VBOX_BUILD
63
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