Makefile.kmk revision 02e4c9aa6e682a3e651c3c25858324cb3d675c5b
af062818b47340eef15700d2f0211576ba3506eevboxsync# $Id$
af062818b47340eef15700d2f0211576ba3506eevboxsync## @file
af062818b47340eef15700d2f0211576ba3506eevboxsync# Sub-Makefile for the VBox Linux Additions X.org graphics driver.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Copyright (C) 2006-2007 Sun Microsystems, Inc.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
af062818b47340eef15700d2f0211576ba3506eevboxsync# available from http://www.virtualbox.org. This file is free software;
af062818b47340eef15700d2f0211576ba3506eevboxsync# you can redistribute it and/or modify it under the terms of the GNU
af062818b47340eef15700d2f0211576ba3506eevboxsync# General Public License (GPL) as published by the Free Software
af062818b47340eef15700d2f0211576ba3506eevboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
af062818b47340eef15700d2f0211576ba3506eevboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
af062818b47340eef15700d2f0211576ba3506eevboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
af062818b47340eef15700d2f0211576ba3506eevboxsync# Clara, CA 95054 USA or visit http://www.sun.com if you need
af062818b47340eef15700d2f0211576ba3506eevboxsync# additional information or have any questions.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncSUB_DEPTH = ../../../../..
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(KBUILD_PATH)/subheader.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncif1of ($(KBUILD_TARGET), linux)
af062818b47340eef15700d2f0211576ba3506eevboxsync SYSMODS += vboxvideo_drv
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_TEMPLATE = VBOXGUESTR3XF86MOD
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_DEFS.linux = linux
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_DEFS.x86 = __i386__
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_DEFS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync _POSIX_C_SOURCE=199309L _POSIX_SOURCE _XOPEN_SOURCE \
af062818b47340eef15700d2f0211576ba3506eevboxsync _BSD_SOURCE _SVID_SOURCE _GNU_SOURCE SHAPE XINPUT XKB LBX XAPPGROUP \
af062818b47340eef15700d2f0211576ba3506eevboxsync XCSECURITY TOGCUP XF86BIGFONT DPMSExtension PIXPRIV PANORAMIX RENDER \
af062818b47340eef15700d2f0211576ba3506eevboxsync GCCUSESGAS AVOID_GLYPHBLT PIXPRIV SINGLEDEPTH XFreeXDGA XvExtension \
af062818b47340eef15700d2f0211576ba3506eevboxsync XFree86LOADER XFree86Server XF86VIDMODE XvMCExtension SMART_SCHEDULE \
af062818b47340eef15700d2f0211576ba3506eevboxsync BUILDDEBUG X_BYTE_ORDER=X_LITTLE_ENDIAN DNDEBUG FUNCPROTO=15 NARROWPROTO \
af062818b47340eef15700d2f0211576ba3506eevboxsync IN_MODULE XFree86Module
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_CFLAGS.linux := \
af062818b47340eef15700d2f0211576ba3506eevboxsync -Wno-conversion -Wno-unused-parameter $(VBOX_GCC_Wno-variadic-macros)
af062818b47340eef15700d2f0211576ba3506eevboxsync ARGB_CURSORS=1
af062818b47340eef15700d2f0211576ba3506eevboxsync ifdef ARGB_CURSORS
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/include \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/include/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/include/X11/extensions \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/include/fonts \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/afb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/include \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/fb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/ddc \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/int10 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/i2c \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/os-support \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/vbe \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/os-support/bus \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/rac \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/ramdac \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/shadowfb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/vgahw \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/xf1bpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/xf24_32bpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/xf4bpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/mfb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/mi \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/miext/shadow \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/render \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/Xext
af062818b47340eef15700d2f0211576ba3506eevboxsync else
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/exports/include/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/include \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/include/extensions \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/include/fonts \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/afb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/include \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/fb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/common \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/ddc \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/int10 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/i2c \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/os-support \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/os-support/bus \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/os-support/vbe \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/rac \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/ramdac \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/shadowfb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/vgahw \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/xf1bpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/xf24_32bpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/hw/xfree86/xf4bpp \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/mfb \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/mi \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/miext/shadow \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/render \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XFREE_4_2)/programs/Xserver/Xext
af062818b47340eef15700d2f0211576ba3506eevboxsync endif
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_68.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils_68.c
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif # target linux
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv_70
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# Remark: The other X.org drivers below are derived from this one. So, to make
af062818b47340eef15700d2f0211576ba3506eevboxsync# that as simple as possible we do ifeq/if1of test here and extends the
af062818b47340eef15700d2f0211576ba3506eevboxsync# base keywords instead of using .solaris or .linux.
af062818b47340eef15700d2f0211576ba3506eevboxsync# Also it is *important* to use := and not = when deriving a properity.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncDLLS += vboxvideo_drv_70
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_70_TEMPLATE = VBOXGUESTR3XORGMOD
af062818b47340eef15700d2f0211576ba3506eevboxsyncif1of ($(KBUILD_TARGET), linux)
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_70_CFLAGS += \
af062818b47340eef15700d2f0211576ba3506eevboxsync -Wno-conversion -Wno-unused-parameter $(VBOX_GCC_Wno-variadic-macros) # template?
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_70_DEFS := \
af062818b47340eef15700d2f0211576ba3506eevboxsync XFree86Server IN_MODULE XFree86Module XFree86LOADER XORG_7X RENDER=1
af062818b47340eef15700d2f0211576ba3506eevboxsyncifeq ($(KBUILD_TARGET),solaris) # don't use .solaris or anything here.
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_drv_70_DEFS += _XPG6 __EXTENSIONS__
af062818b47340eef15700d2f0211576ba3506eevboxsyncendif
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_70_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_7_0) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_7_0)/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_7_0)/xorg \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/glproto-1.4.3 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/libdrm-1.0.5 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xf86driproto-2.0.3
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_70_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_70.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils.c
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv_71
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncDLLS += vboxvideo_drv_71
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_71_TEMPLATE = VBOXGUESTR3XORGMOD
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_71_CFLAGS := $(vboxvideo_drv_70_CFLAGS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_71_DEFS := $(vboxvideo_drv_70_DEFS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_71_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_7_1) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_7_1)/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_7_1)/xorg \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/glproto-1.4.7 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/libdrm-2.0.1 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xf86driproto-2.0.3
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_71_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_70.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils.c
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv_13
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncDLLS += vboxvideo_drv_13
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_13_TEMPLATE = VBOXGUESTR3XORGMOD
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_13_CFLAGS := $(vboxvideo_drv_70_CFLAGS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_13_DEFS := $(vboxvideo_drv_70_DEFS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_13_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_3) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_3)/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_3)/xorg \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/glproto-1.4.8 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/libdrm-2.3.0 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xf86driproto-2.0.3
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_13_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_13.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils.c
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv_14
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# This uses the same code (vboxvideo_13.c) as 1.3, but is built
af062818b47340eef15700d2f0211576ba3506eevboxsync# for 1.4 as well in case there should be any relevant header changes.
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncDLLS += vboxvideo_drv_14
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_14_TEMPLATE = VBOXGUESTR3XORGMOD
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_14_CFLAGS := $(vboxvideo_drv_70_CFLAGS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_14_DEFS := $(vboxvideo_drv_70_DEFS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_14_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_4) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_4)/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_4)/xorg \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/glproto-1.4.8 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/libdrm-2.3.0 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xf86driproto-2.0.4
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_14_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_13.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils.c
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv_15
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncDLLS += vboxvideo_drv_15
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_15_TEMPLATE = VBOXGUESTR3XORGMOD
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_15_CFLAGS := $(vboxvideo_drv_70_CFLAGS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_15_DEFS := $(vboxvideo_drv_70_DEFS) NO_ANSIC PCIACCESS \
af062818b47340eef15700d2f0211576ba3506eevboxsync VBOX_NO_LOW_COLOUR VBOX_DRI
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_15_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_5) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_5)/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/glproto-1.4.9 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/libdrm-2.3.1 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xf86driproto-2.0.4 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xorg-server-1.5.3
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_15_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_15.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_dri.c
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsync# vboxvideo_drv_16
af062818b47340eef15700d2f0211576ba3506eevboxsync#
af062818b47340eef15700d2f0211576ba3506eevboxsyncDLLS += vboxvideo_drv_16
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_16_TEMPLATE = VBOXGUESTR3XORGMOD
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_16_CFLAGS := $(vboxvideo_drv_70_CFLAGS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_16_DEFS := $(vboxvideo_drv_15_DEFS)
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_16_INCS = \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_6) \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_XORG_1_6)/X11 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/glproto-1.4.9 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/libdrm-2.4.5 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xf86driproto-2.0.4 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xorg-server-1.6.0 \
af062818b47340eef15700d2f0211576ba3506eevboxsync $(VBOX_PATH_X11_ROOT)/xorg-server-1.6.0-local
af062818b47340eef15700d2f0211576ba3506eevboxsyncvboxvideo_drv_16_SOURCES = \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_15.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxutils.c \
af062818b47340eef15700d2f0211576ba3506eevboxsync vboxvideo_dri.c
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsyncinclude $(KBUILD_PATH)/subfooter.kmk
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync