[go: up one dir, main page]

Menu

[5a71d8]: / utils / Makefile  Maximize  Restore  History

Download this file

19 lines (11 with data), 433 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
all: create
include ../compiler.make
DEPENDENCIES = $(COMMON_FILES) $(IO_LAYER_FILES) $(MNG_LAYER_FILES) $(CONTAINER_FILES) $(ALGO_FILES)
create: createdisks.cpp $(DEPENDENCIES)
$(GCC) createdisks.cpp -o createdisks $(STXXL_LIB)
memory: testMemory.cpp
$(GCC) testMemory.cpp -o memory $(STXXL_LIB)
off:
g++ -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE off_t_size.cpp -o off_t_size
clean:
rm -f *.o