VirtualBox

source: vbox/trunk/src/VBox/Devices/Storage/testcase/Makefile.kmk@ 31514

Last change on this file since 31514 was 31514, checked in by vboxsync, 14 years ago

Windows build fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1# $Id: Makefile.kmk 31514 2010-08-10 09:53:44Z vboxsync $
2## @file
3# Sub-Makefile for the storage device & driver testcases.
4#
5
6#
7# Copyright (C) 2006-2010 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18SUB_DEPTH = ../../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# vditool - useful too for manipulating VDIs, but now pretty obsolete and
23# probably will go away soon. Testcase only now.
24#
25ifdef VBOX_WITH_TESTCASES
26 PROGRAMS += vditool
27 vditool_TEMPLATE = VBOXR3TSTEXE
28 vditool_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
29 vditool_SOURCES = vditool.cpp
30endif
31
32
33#
34# Basic testcase for the VDI code.
35#
36#ifdef VBOX_WITH_TESTCASES
37# PROGRAMS += tstVDI
38# ifeq ($(KBUILD_TARGET),l4)
39# tstVDI_TEMPLATE = VBOXLNXHOSTR3EXE
40# else
41# tstVDI_TEMPLATE = VBOXR3TSTEXE
42# endif
43# tstVDI_LIBS = $(vditool_LIBS)
44# tstVDI_SOURCES = tstVDI.cpp
45#endif
46
47#
48# Basic testcases for the VD code.
49#
50ifdef VBOX_WITH_TESTCASES
51 PROGRAMS += tstVD tstVD-2 tstVDCopy tstVDSnap tstVDShareable tstVDSetUuid
52 if1of ($(KBUILD_TARGET), darwin freebsd linux win solaris)
53 PROGRAMS += VBoxFixHdd
54 endif
55 ifeq ($(KBUILD_TARGET),l4)
56 tstVD_TEMPLATE = VBOXLNXHOSTR3EXE
57 tstVD-2_TEMPLATE = VBOXLNXHOSTR3EXE
58 tstVDCopy_TEMPLATE = VBOXLNXHOSTR3EXE
59 tstVDSnap_TEMPLATE = VBOXLNXHOSTR3EXE
60 tstVDShareable_TEMPLATE = VBOXLNXHOSTR3EXE
61 tstVDSetUuid_TEMPLATE = VBOXLNXHOSTR3EXE
62 else
63 tstVD_TEMPLATE = VBOXR3TSTEXE
64 tstVD-2_TEMPLATE = VBOXR3TSTEXE
65 tstVDCopy_TEMPLATE = VBOXR3TSTEXE
66 tstVDSnap_TEMPLATE = VBOXR3TSTEXE
67 tstVDShareable_TEMPLATE = VBOXR3TSTEXE
68 tstVDSetUuid_TEMPLATE = VBOXR3TSTEXE
69 VBoxFixHdd_TEMPLATE = VBOXR3STATIC
70 endif
71 tstVD_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
72 tstVD-2_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
73 tstVDCopy_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
74 tstVDSnap_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
75 tstVDShareable_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
76 tstVDSetUuid_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
77 VBoxFixHdd_LIBS = \
78 $(VBOX_LIB_RUNTIME_STATIC)
79 if1of ($(KBUILD_TARGET),os2 win)
80 VBoxFixHdd_LIBS += \
81 $(PATH_LIB)/VBox-liblzf-static$(VBOX_SUFF_LIB) \
82 $(PATH_LIB)/VBox-zlib-static$(VBOX_SUFF_LIB)
83 else
84 VBoxFixHdd_LIBS += \
85 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB) \
86 $(SDK_VBOX_ZLIB_LIBS)
87 endif
88 ifeq ($(KBUILD_TARGET),linux)
89 VBoxFixHdd_LIBS += crypt
90 else ifeq ($(KBUILD_TARGET),darwin)
91 VBoxFixHdd_LIBS += iconv
92 else ifeq ($(KBUILD_TARGET),win)
93 VBoxFixHdd_SDKS.win = VBOX_NTDLL
94 endif
95 tstVD_SOURCES = tstVD.cpp
96 tstVD-2_SOURCES = tstVD-2.cpp
97 tstVDCopy_SOURCES = tstVDCopy.cpp
98 tstVDSnap_SOURCES = tstVDSnap.cpp
99 tstVDShareable_SOURCES = tstVDShareable.cpp
100 tstVDSetUuid_SOURCES = tstVDSetUuid.cpp
101 VBoxFixHdd_SOURCES = \
102 tstVDSetUuid.cpp \
103 tstVDSetUuidStubs.cpp \
104 $(VBOX_PATH_DEVICES_SRC)/Storage/VBoxHDD.cpp \
105 $(VBOX_PATH_DEVICES_SRC)/Storage/RawHDDCore.cpp \
106 $(VBOX_PATH_DEVICES_SRC)/Storage/VmdkHDDCore.cpp \
107 $(VBOX_PATH_DEVICES_SRC)/Storage/VDIHDDCore.cpp \
108 $(VBOX_PATH_DEVICES_SRC)/Storage/VHDHDDCore.cpp \
109 $(VBOX_PATH_DEVICES_SRC)/Storage/ParallelsHDDCore.cpp
110 ifdef VBOX_WITH_NEW_IO_CODE
111 VBoxFixHdd_DEFS += VBOX_WITH_NEW_IO_CODE
112 endif
113 VBoxFixHdd_DEFS += VBOX_HDD_NO_DYNAMIC_BACKENDS IN_VBOXDDU IN_VBOXDDU_STATIC IN_RT_R3
114endif
115
116include $(KBUILD_PATH)/subfooter.kmk
117
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