Changeset 1565 in vbox for trunk/src/VBox/Devices/Storage/testcase/Makefile
- Timestamp:
- Mar 20, 2007 3:06:26 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/testcase/Makefile
r960 r1565 22 22 include $(PATH_KBUILD)/header.kmk 23 23 24 PROGRAMS = vditool 24 PROGRAMS += vditool 25 vditool_TEMPLATE = VBOXR3EXE 26 vditool_SOURCES = vditool.cpp 27 ifeq ($(BUILD_TARGET),win) 28 vditool_LIBS = $(PATH_LIB)/VBoxDDU$(VBOX_SUFF_LIB) 29 else 30 vditool_LIBS = $(PATH_BIN)/VBoxDDU$(VBOX_SUFF_DLL) 31 endif 32 vditool_LIBS += $(LIB_RUNTIME) 33 34 25 35 ifdef VBOX_WITH_TESTCASES 26 PROGRAMS += tstVDI 36 PROGRAMS += tstVDI 37 tstVDI_TEMPLATE = VBOXR3TSTEXE 38 tstVDI_SOURCES = tstVDI.cpp 39 tstVDI_LIBS = $(vditool_LIBS) 27 40 endif 28 41 29 TEMPLATE = VBOXR3EXE30 ifeq ($(filter-out win,$(BUILD_TARGET)),)31 LIBS = $(PATH_LIB)/VBoxDD.lib32 else33 LIBS = \34 $(PATH_BIN)/VBoxDD$(VBOX_SUFF_DLL) \35 $(PATH_BIN)/VBoxDD2$(VBOX_SUFF_DLL) \36 $(LIB_VMM) \37 $(LIB_REM)38 endif39 LIBS += $(LIB_RUNTIME)40 41 vditool_SOURCES = vditool.cpp42 43 tstVDI_SOURCES = tstVDI.cpp44 tstVDI_INST = $(INST_TESTCASE)45 42 46 43 include $(PATH_KBUILD)/footer.kmk
Note:
See TracChangeset
for help on using the changeset viewer.