Makefile revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
363N/A#
363N/A# Makefile for the storage device & driver testcases.
363N/A#
363N/A
363N/A#
363N/A# Copyright (C) 2006 InnoTek Systemberatung GmbH
363N/A#
363N/A# This file is part of VirtualBox Open Source Edition (OSE), as
363N/A# available from http://www.virtualbox.org. This file is free software;
363N/A# you can redistribute it and/or modify it under the terms of the GNU
363N/A# General Public License as published by the Free Software Foundation,
363N/A# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
363N/A# distribution. VirtualBox OSE is distributed in the hope that it will
363N/A# be useful, but WITHOUT ANY WARRANTY of any kind.
363N/A#
363N/A# If you received this file as part of a commercial VirtualBox
363N/A# distribution, then only the terms of your commercial VirtualBox
363N/A# license agreement apply instead of the previous paragraph.
363N/A#
363N/A
5680N/ADEPTH = ../../../../..
5680N/Ainclude $(PATH_KBUILD)/header.kmk
5371N/A
363N/APROGRAMS = vditool
364N/Aifdef VBOX_WITH_TESTCASES
363N/APROGRAMS += tstVDI
797N/Aendif
797N/A
797N/ATEMPLATE = VBOXR3EXE
797N/ALIBS = $(LIB_RUNTIME)
797N/ALIBS.darwin = $(PATH_BIN)/VBoxDD.dylib
797N/ALIBS.linux = $(PATH_BIN)/VBoxDD.so
5912N/ALIBS.l4 = $(PATH_BIN)/VBoxDD.s.so
797N/ALIBS.os2 = $(PATH_BIN)/VBoxDD.dll
797N/ALIBS.win = $(PATH_LIB)/VBoxDD.lib
5912N/A
797N/AtstVDI_SOURCES = VHDDtest.cpp
797N/A
797N/Avditool_SOURCES = vhddtool.cpp
827N/A
5912N/Ainclude $(PATH_KBUILD)/footer.kmk
797N/A
2931N/A