1 | # $Id: Makefile.kmk 33746 2010-11-03 18:32:49Z 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 |
|
---|
18 | SUB_DEPTH = ../../../../..
|
---|
19 | include $(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 | #
|
---|
25 | ifdef VBOX_WITH_TESTCASES
|
---|
26 | PROGRAMS += vditool
|
---|
27 | vditool_TEMPLATE = VBOXR3TSTEXE
|
---|
28 | vditool_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
29 | vditool_SOURCES = vditool.cpp
|
---|
30 | endif
|
---|
31 |
|
---|
32 | #
|
---|
33 | # Basic testcases for the VD code.
|
---|
34 | #
|
---|
35 | ifdef VBOX_WITH_TESTCASES
|
---|
36 | PROGRAMS += tstVD tstVD-2 tstVDCopy tstVDSnap tstVDShareable vbox-img
|
---|
37 | tstVD_TEMPLATE = VBOXR3TSTEXE
|
---|
38 | tstVD-2_TEMPLATE = VBOXR3TSTEXE
|
---|
39 | tstVDCopy_TEMPLATE = VBOXR3TSTEXE
|
---|
40 | tstVDSnap_TEMPLATE = VBOXR3TSTEXE
|
---|
41 | tstVDShareable_TEMPLATE = VBOXR3TSTEXE
|
---|
42 | vbox-img_TEMPLATE = VBOXR3STATIC
|
---|
43 | tstVD_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
44 | tstVD-2_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
45 | tstVDCopy_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
46 | tstVDSnap_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
47 | tstVDShareable_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
48 | tstVDSetUuid_LIBS = $(LIB_DDU) $(LIB_RUNTIME)
|
---|
49 | vbox-img_LIBS = \
|
---|
50 | $(VBOX_LIB_RUNTIME_STATIC)
|
---|
51 | if1of ($(KBUILD_TARGET),os2 win)
|
---|
52 | vbox-img_LIBS += \
|
---|
53 | $(PATH_LIB)/VBox-liblzf-static$(VBOX_SUFF_LIB) \
|
---|
54 | $(PATH_LIB)/VBox-zlib-static$(VBOX_SUFF_LIB)
|
---|
55 | else
|
---|
56 | vbox-img_LIBS += \
|
---|
57 | $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB) \
|
---|
58 | $(SDK_VBOX_ZLIB_LIBS)
|
---|
59 | endif
|
---|
60 | ifeq ($(KBUILD_TARGET),linux)
|
---|
61 | vbox-img_LIBS += crypt
|
---|
62 | else if1of ($(KBUILD_TARGET),darwin freebsd)
|
---|
63 | vbox-img_LIBS += iconv
|
---|
64 | else ifeq ($(KBUILD_TARGET),win)
|
---|
65 | vbox-img_SDKS.win = VBOX_NTDLL
|
---|
66 | endif
|
---|
67 | tstVD_SOURCES = tstVD.cpp
|
---|
68 | tstVD-2_SOURCES = tstVD-2.cpp
|
---|
69 | tstVDCopy_SOURCES = tstVDCopy.cpp
|
---|
70 | tstVDSnap_SOURCES = tstVDSnap.cpp
|
---|
71 | tstVDShareable_SOURCES = tstVDShareable.cpp
|
---|
72 |
|
---|
73 | vbox-img_SOURCES = \
|
---|
74 | vbox-img.cpp \
|
---|
75 | $(VBOX_PATH_STORAGE_SRC)/VD.cpp \
|
---|
76 | $(VBOX_PATH_STORAGE_SRC)/VDI.cpp \
|
---|
77 | $(VBOX_PATH_STORAGE_SRC)/VMDK.cpp \
|
---|
78 | $(VBOX_PATH_STORAGE_SRC)/VHD.cpp \
|
---|
79 | $(VBOX_PATH_STORAGE_SRC)/DMG.cpp \
|
---|
80 | $(VBOX_PATH_STORAGE_SRC)/Parallels.cpp \
|
---|
81 | $(VBOX_PATH_STORAGE_SRC)/ISCSI.cpp \
|
---|
82 | $(VBOX_PATH_STORAGE_SRC)/RAW.cpp \
|
---|
83 | $(VBOX_PATH_STORAGE_SRC)/VCICache.cpp
|
---|
84 | vbox-img_DEFS += IN_VBOXDDU IN_VBOXDDU_STATIC VBOX_HDD_NO_DYNAMIC_BACKENDS IN_RT_R3
|
---|
85 | endif
|
---|
86 |
|
---|
87 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
88 |
|
---|