VirtualBox

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

Last change on this file since 48444 was 48444, checked in by vboxsync, 11 years ago

Additions/linux/drm: make the new driver build but not yet load.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1#
2# VirtualBox Guest Additions Module Makefile.
3#
4# (For 2.6.x this file must be 'Makefile'!)
5#
6# Copyright (C) 2006-2010 Oracle Corporation
7#
8# This file is part of VirtualBox Open Source Edition (OSE), as
9# available from http://www.virtualbox.org. This file is free software;
10# you can redistribute it and/or modify it under the terms of the GNU
11# General Public License (GPL) as published by the Free Software
12# Foundation, in version 2 as it comes in the "COPYING" file of the
13# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15#
16
17# Linux kbuild sets this to our source directory if we are called from there
18obj ?= $(CURDIR)
19include $(obj)/Makefile.include.header
20
21MOD_NAME = vboxvideo
22
23MOD_OBJS = HGSMIBase.o HGSMICommon.o heapoffset.o Modesetting.o vbox_drv.o \
24 vbox_fb.o vbox_main.o vbox_mode.o vbox_ttm.o VBVABase.o
25
26ifneq ($(wildcard $(KBUILD_EXTMOD)/vboxvideo),)
27 MANGLING := $(KBUILD_EXTMOD)/vboxvideo/include/VBox/VBoxGuestMangling.h
28else
29 MANGLING := $(KBUILD_EXTMOD)/include/VBox/VBoxGuestMangling.h
30endif
31MOD_CFLAGS = -fshort-wchar -include $(MANGLING)
32MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include)
33# What on earth is this?
34MOD_INCL += $(addprefix -I$(KBUILD_EXTMOD)/vboxvideo,/ /include)
35MOD_INCL += -Iinclude/drm
36MOD_DEFS := -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 \
37 -DIN_SUP_R0 -DVBOX -DVBOX_WITH_HGCM -DLOG_TO_BACKDOOR -DIN_MODULE \
38 -DIN_GUEST_R0
39# our module does not export any symbol
40MOD_DEFS += -DRT_NO_EXPORT_SYMBOL
41ifeq ($(BUILD_TARGET_ARCH),amd64)
42 MOD_DEFS += -DRT_ARCH_AMD64 -DVBOX_WITH_64_BITS_GUESTS
43else
44 MOD_DEFS += -DRT_ARCH_X86
45endif
46MOD_CLEAN = . linux r0drv r0drv/linux
47
48include $(obj)/Makefile.include.footer
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