[go: up one dir, main page]

Menu

[19aa1c]: / mng / Makefile  Maximize  Restore  History

Download this file

19 lines (11 with data), 574 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
all_tests: main streams
include ../compiler.make
DEPENDENCIES = $(COMMON_FILES) $(IO_LAYER_FILES) $(MNG_LAYER_FILES)
main: test.cpp $(DEPENDENCIES)
$(GCC) test.cpp -o mngtest $(STXXL_LIB) -DSTXXL_VERBOSE_LEVEL=2
streams: test_streams.cpp $(DEPENDENCIES)
$(GCC) test_streams.cpp -o test_streams $(STXXL_LIB)
write_pool: write_pool.cpp $(DEPENDENCIES)
$(GCC) write_pool.cpp -o test_write_pool $(STXXL_LIB) -DSTXXL_VERBOSE_LEVEL=2
prefetch_pool: prefetch_pool.cpp $(DEPENDENCIES)
$(GCC) prefetch_pool.cpp -o test_prefetch_pool $(STXXL_LIB) -DSTXXL_VERBOSE_LEVEL=2