[go: up one dir, main page]

Menu

[e222c1]: / mng / Makefile  Maximize  Restore  History

Download this file

33 lines (22 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
all_tests: main streams write_pool prefetch_pool
include ../make.settings
DEPENDENCIES = $(COMMON_FILES) $(IO_LAYER_FILES) $(MNG_LAYER_FILES)
lib: mng.cpp
$(COMPILER) $(STXXL_COMPILER_OPTIONS) -c mng.cpp
main: test.cpp $(DEPENDENCIES)
$(COMPILER) $(STXXL_COMPILER_OPTIONS) -c test.cpp -DSTXXL_VERBOSE_LEVEL=2
$(LINKER) test.$(OBJEXT) $(OUT)test.$(EXEEXT) $(STXXL_LINKER_OPTIONS)
streams: test_streams.cpp $(DEPENDENCIES)
$(COMPILER) $(STXXL_COMPILER_OPTIONS) -c test_streams.cpp
$(LINKER) test_streams.$(OBJEXT) $(OUT)test_streams.$(EXEEXT) $(STXXL_LINKER_OPTIONS)
write_pool: write_pool.cpp $(DEPENDENCIES)
$(COMPILER) $(STXXL_COMPILER_OPTIONS) -c write_pool.cpp -DSTXXL_VERBOSE_LEVEL=2
$(LINKER) write_pool.$(OBJEXT) $(OUT)write_pool.$(EXEEXT) $(STXXL_LINKER_OPTIONS)
prefetch_pool: prefetch_pool.cpp $(DEPENDENCIES)
$(COMPILER) $(STXXL_COMPILER_OPTIONS) -c prefetch_pool.cpp -DSTXXL_VERBOSE_LEVEL=2
$(LINKER) prefetch_pool.$(OBJEXT) $(OUT)prefetch_pool.$(EXEEXT) $(STXXL_LINKER_OPTIONS)
clean:
$(RM) *.$(OBJEXT)
$(RM) test.$(EXEEXT)
$(RM) prefetch_pool.$(EXEEXT) write_pool.$(EXEEXT)
$(RM) test_streams.$(EXEEXT)