1 | # $Id: Makefile.module.kms 69498 2017-10-28 15:07:25Z 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-2010 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
|
---|
21 | obj ?= $(CURDIR)
|
---|
22 | include $(obj)/Makefile.include.header
|
---|
23 |
|
---|
24 | BUILD = 1
|
---|
25 |
|
---|
26 | # We want to build on Linux 3.11 and later, plus the 3.10 EL 7.3 and later
|
---|
27 | # kernels. This file was added in 3.11 and back-ported to the EL 7.3 kernel.
|
---|
28 | ifeq ($(wildcard $(KERN_INCL)/drm/drm_rect.h),)
|
---|
29 | BUILD =
|
---|
30 | endif
|
---|
31 |
|
---|
32 | # And we do not want to build on EL6, regardless of what may have been
|
---|
33 | # backported.
|
---|
34 | ifneq ($(wildcard /etc/redhat-release),)
|
---|
35 | ifneq ($(shell grep "Enterprise.*release 6" /etc/redhat-release),)
|
---|
36 | BUILD =
|
---|
37 | endif
|
---|
38 | endif
|
---|
39 |
|
---|
40 | ifneq ($(BUILD),)
|
---|
41 |
|
---|
42 | MOD_NAME = vboxvideo
|
---|
43 | MOD_OBJS = hgsmi_base.o \
|
---|
44 | modesetting.o vbox_drv.o vbox_fb.o vbox_irq.o vbox_main.o \
|
---|
45 | vbox_mode.o vbox_ttm.o vbva_base.o vbox_prime.o vbox_hgsmi.o
|
---|
46 | MOD_INCL = -I$(KBUILD_EXTMOD) -Iinclude/drm
|
---|
47 |
|
---|
48 | include $(obj)/Makefile.include.footer
|
---|
49 |
|
---|
50 | else # ! wildcard $(KERN_INCL)/drm/drm_rect.h
|
---|
51 |
|
---|
52 | all:
|
---|
53 | install:
|
---|
54 | clean:
|
---|
55 |
|
---|
56 | endif # ! wildcard $(KERN_INCL)/drm/drm_rect.h
|
---|