space map tests

This commit is contained in:
Joe Thornber
2011-07-13 16:59:12 +01:00
parent 8a7f0214d3
commit e77ed189bb
4 changed files with 113 additions and 9 deletions

View File

@@ -2,7 +2,8 @@ SOURCE=\
metadata.cc
PROGRAM_SOURCE=\
block_t.cc
block_t.cc \
space_map_t.cc
OBJECTS=$(subst .cc,.o,$(SOURCE))
CPPFLAGS=-Wall -std=c++0x
@@ -25,5 +26,8 @@ multisnap_display: $(OBJECTS) main.o
block_t: block_t.o
g++ -o $@ $+ $(LIBS)
space_map_t: space_map_t.o
g++ -o $@ $+ $(LIBS)
include $(subst .cc,.d,$(SOURCE))
include $(subst .cc,.d,$(PROGRAM_SOURCE))