Changeset 15366 in vbox for trunk/src/VBox/Devices/Storage/testcase
- Timestamp:
- Dec 12, 2008 1:50:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/testcase/Makefile.kmk
r14787 r15366 27 27 # probably will go away soon. Testcase only now. 28 28 # 29 ifdef VBOX_WITH_TESTCASES30 PROGRAMS += vditool31 ifeq ($(KBUILD_TARGET),l4)32 vditool_TEMPLATE = VBOXLNXHOSTR3EXE33 vditool_LIBS = \34 $(PATH_LIB)/VBoxDDULnxHostR3.a \35 $(PATH_LIB)/RuntimeLnxHostR3.a36 else37 vditool_TEMPLATE = VBOXR3TSTEXE38 vditool_LIBS = $(LIB_DDU) $(LIB_RUNTIME)39 endif40 vditool_SOURCES = vditool.cpp41 endif29 #ifdef VBOX_WITH_TESTCASES 30 # PROGRAMS += vditool 31 # ifeq ($(KBUILD_TARGET),l4) 32 # vditool_TEMPLATE = VBOXLNXHOSTR3EXE 33 # vditool_LIBS = \ 34 # $(PATH_LIB)/VBoxDDULnxHostR3.a \ 35 # $(PATH_LIB)/RuntimeLnxHostR3.a 36 # else 37 # vditool_TEMPLATE = VBOXR3TSTEXE 38 # vditool_LIBS = $(LIB_DDU) $(LIB_RUNTIME) 39 # endif 40 # vditool_SOURCES = vditool.cpp 41 #endif 42 42 43 43 … … 45 45 # Basic testcase for the VDI code. 46 46 # 47 ifdef VBOX_WITH_TESTCASES48 PROGRAMS += tstVDI49 ifeq ($(KBUILD_TARGET),l4)50 tstVDI_TEMPLATE = VBOXLNXHOSTR3EXE51 else52 tstVDI_TEMPLATE = VBOXR3TSTEXE53 endif54 tstVDI_LIBS = $(vditool_LIBS)55 tstVDI_SOURCES = tstVDI.cpp56 endif47 #ifdef VBOX_WITH_TESTCASES 48 # PROGRAMS += tstVDI 49 # ifeq ($(KBUILD_TARGET),l4) 50 # tstVDI_TEMPLATE = VBOXLNXHOSTR3EXE 51 # else 52 # tstVDI_TEMPLATE = VBOXR3TSTEXE 53 # endif 54 # tstVDI_LIBS = $(vditool_LIBS) 55 # tstVDI_SOURCES = tstVDI.cpp 56 #endif 57 57 58 58 # … … 68 68 tstVD-2_TEMPLATE = VBOXR3TSTEXE 69 69 endif 70 tstVD_LIBS = $( vditool_LIBS)71 tstVD-2_LIBS = $(vditool_LIBS)70 tstVD_LIBS = $(LIB_DDU) $(LIB_RUNTIME) 71 tstVD-2_LIBS = $(LIB_DDU) $(LIB_RUNTIME) 72 72 tstVD_SOURCES = tstVD.cpp 73 73 tstVD-2_SOURCES = tstVD-2.cpp
Note:
See TracChangeset
for help on using the changeset viewer.