makefile revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
5992N/A#
5992N/A# Makefile for VBoxVideo.
5992N/A#
5992N/A
5992N/A#
5992N/A# Copyright (C) 2006 InnoTek Systemberatung GmbH
5992N/A#
5992N/A# This file is part of VirtualBox Open Source Edition (OSE), as
5992N/A# available from http://www.virtualbox.org. This file is free software;
5992N/A# you can redistribute it and/or modify it under the terms of the GNU
5992N/A# General Public License as published by the Free Software Foundation,
5992N/A# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
5992N/A# distribution. VirtualBox OSE is distributed in the hope that it will
5992N/A# be useful, but WITHOUT ANY WARRANTY of any kind.
5992N/A#
5992N/A# If you received this file as part of a commercial VirtualBox
5992N/A# distribution, then only the terms of your commercial VirtualBox
5992N/A# license agreement apply instead of the previous paragraph.
5992N/A#
5992N/A
5992N/ADEPTH = ../../../../../..
5992N/Ainclude $(PATH_KBUILD)/header.kmk
5992N/A
5992N/ASYSMODS = VBoxVideo
5992N/A
5992N/A# This has to run on NT4!
5992N/AVBoxVideo_TEMPLATE = VBOXW32GUESTR0
5992N/AVBoxVideo_SDKS = W2K3DDKX86 WINPSDKINCS
5992N/AVBoxVideo_DEFS = LOG_TO_BACKDOOR
5992N/A#VBoxVideo_DEFS += LOG_ENABLED
5992N/AVBoxVideo_LDFLAGS = /Entry:DriverEntry@8
6003N/AVBoxVideo_SOURCES = \
6003N/A VBoxVideo.cpp \
6003N/A Helper.cpp \
6003N/A VBoxVideo.def \
5992N/A VBoxVideo.rc
5992N/AVBoxVideo_LIBS = \
5992N/A $(PATH_SDK_W2K3DDKX86_LIB)/videoprt.lib \
5992N/A $(PATH_SDK_W2K3DDKX86_LIB)/int64.lib \
5992N/A $(PATH_SDK_W2K3DDKX86_LIB)/ntoskrnl.lib \
5992N/A $(PATH_SDK_W2K3DDKX86_LIB)/hal.lib \
5992N/A $(PATH_LIB)/additions/VBoxGuestLib$(VBOXW32GUEST_SUFF_LIB) \
6003N/A $(PATH_LIB)/additions/RuntimeW32NT4GuestR0$(VBOXW32GUEST_SUFF_LIB)
5992N/A
5992N/Ainclude $(PATH_KBUILD)/footer.kmk
5992N/A
6003N/A