Makefile.kmk revision 2094d1f0a4c3be5ddbaf56ec8078f06c27cc45b6
# $Id$
## @file
# Sub-Makefile for VBoxDisp.dll.
#
#
# Copyright (C) 2006-2007 Sun Microsystems, Inc.
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
# Clara, CA 95054 USA or visit http://www.sun.com if you need
# additional information or have any questions.
#
SUB_DEPTH = ../../../../../..
include $(KBUILD_PATH)/subheader.kmk
SYSMODS += VBoxDisp
VBoxDisp_TEMPLATE = VBOXGUESTR0
ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.)
VBoxDisp_NOINST = true
endif
VBoxDisp_SYSSUFF = .dll
VBoxDisp_DEFS = _WIN32_WINNT=0x0501 LOG_TO_BACKDOOR VBOX_WITH_DDRAW VBOX_WITH_OPENGL
VBoxDisp_INCS = ../../include
VBoxDisp_DEFS += VBOX_VBVA_ADJUST_RECT
#VBoxDisp_DEFS += LOG_ENABLED
ifdef VBOX_WITH_VIDEOHWACCEL
VBoxDisp_DEFS += VBOX_WITH_VIDEOHWACCEL
endif
#VBoxDisp_DEFS += STAT_sunlover
VBoxDisp_SOURCES = \
color.c \
debug.c \
enable.c \
palette.c \
pointer.c \
screen.c \
drv.c \
dd.c \
vbva.c \
vrdp.c \
vrdpbmp.c \
vrdptext.c \
vbox.c \
VBoxDisp.def \
VBoxDisp.rc
ifdef VBOX_WITH_VIDEOHWACCEL
VBoxDisp_SOURCES += vhwa.c
endif
VBoxDisp_LDFLAGS.x86 = /Entry:DrvEnableDriver@12
VBoxDisp_LDFLAGS.amd64 = /Entry:DrvEnableDriver
VBoxDisp_LIBS = \
$(PATH_SDK_W2K3DDK_LIB)/win32k.lib \
$(VBOX_LIB_IPRT_GUEST_R0)
ifdef VBOX_WITH_HGSMI
VBoxDisp_LIBS += \
$(VBOX_PATH_ADDITIONS_LIB)/HGSMIGuestR0Lib$(VBOX_SUFF_LIB)
VBoxDisp_DEFS += VBOX_WITH_HGSMI
endif
ifdef VBOXWDDM
ifeq ($(KBUILD_TARGET_ARCH), amd64)
$(warning VBoxVideoD3D: make it 32bit for 64bit builds)
endif
DLLS += VBoxDispD3D
if defined(VBOX_SIGNING_MODE)
VBoxDispD3D_NOINST = true
endif
VBoxDispD3D_TEMPLATE = VBOXGUESTR3DLL
VBoxDispD3D_DEFS = UNICODE _UNICODE
VBoxDispD3D_SOURCES = \
wddm/VBoxDispD3D.cpp \
wddm/VBoxDispD3D.def \
wddm/VBoxDispD3D.rc
VBoxDispD3D_LIBS = \
$(VBOX_LIB_IPRT_GUEST_R3) \
$(VBOX_LIB_VBGL_R3)
VBoxDispD3D_SDKS = WINDDKWLH
ifeq ($(KBUILD_TARGET_ARCH), amd64)
DLLS += VBoxDispD3D64
if defined(VBOX_SIGNING_MODE)
VBoxDispD3D64_NOINST = true
endif
VBoxDispD3D64_TEMPLATE = VBOXGUESTR3DLL
VBoxDispD3D64_DEFS = UNICODE _UNICODE
VBoxDispD3D64_SOURCES = \
wddm/VBoxDispD3D.cpp \
wddm/VBoxDispD3D64.def \
wddm/VBoxDispD3D.rc
VBoxDispD3D64_LIBS = \
$(VBOX_LIB_IPRT_GUEST_R3) \
$(VBOX_LIB_VBGL_R3)
VBoxDispD3D64_SDKS = WINDDKWLH
endif
endif
include $(KBUILD_PATH)/subfooter.kmk