[go: up one dir, main page]

Menu

[e222c1]: / utils / Makefile  Maximize  Restore  History

Download this file

15 lines (8 with data), 385 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
all: create
include ../make.settings
DEPENDENCIES = $(COMMON_FILES) $(IO_LAYER_FILES) $(MNG_LAYER_FILES) $(CONTAINER_FILES) $(ALGO_FILES)
create: createdisks.cpp $(DEPENDENCIES)
$(COMPILER) $(STXXL_COMPILER_OPTIONS) -c createdisks.cpp -DNDEBUG
$(LINKER) createdisks.$(OBJEXT) $(OUT)createdisks.$(EXEEXT) $(STXXL_LINKER_OPTIONS)
clean:
$(RM) *.$(OBJEXT) createdisks.$(EXEEXT)