2011-06-16 12:46:10 +05:30
|
|
|
SOURCE=\
|
2011-08-22 15:12:13 +05:30
|
|
|
endian_utils.cc \
|
2011-08-24 15:15:39 +05:30
|
|
|
error_set.cc \
|
2011-08-23 16:25:37 +05:30
|
|
|
metadata.cc \
|
2011-08-31 17:18:41 +05:30
|
|
|
metadata_disk_structures.cc \
|
|
|
|
space_map_disk.cc \
|
|
|
|
transaction_manager.cc
|
2011-08-22 15:12:13 +05:30
|
|
|
|
2011-06-16 12:46:10 +05:30
|
|
|
OBJECTS=$(subst .cc,.o,$(SOURCE))
|
2011-08-22 15:12:13 +05:30
|
|
|
TOP_DIR:=$(PWD)
|
2011-08-25 15:24:43 +05:30
|
|
|
#CPPFLAGS=-Wall -g -I$(TOP_DIR)
|
|
|
|
CPPFLAGS=-Wall -std=c++0x -g -I$(TOP_DIR)
|
2011-06-16 12:46:10 +05:30
|
|
|
LIBS=-lstdc++
|
|
|
|
|
2011-08-31 18:23:46 +05:30
|
|
|
.PHONEY: test-programs
|
2011-07-14 20:01:00 +05:30
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
test-programs: $(TEST_PROGRAMS)
|
|
|
|
|
2011-06-27 15:15:30 +05:30
|
|
|
.SUFFIXES: .cc .o .d
|
2011-06-16 12:46:10 +05:30
|
|
|
|
2011-06-27 15:15:30 +05:30
|
|
|
%.d: %.cc
|
2011-08-22 15:12:13 +05:30
|
|
|
g++ -MM $(CPPFLAGS) $< > $@.$$$$; \
|
2011-06-27 15:15:30 +05:30
|
|
|
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
|
|
|
|
rm -f $@.$$$$
|
2011-06-16 12:46:10 +05:30
|
|
|
|
|
|
|
.cc.o:
|
|
|
|
g++ -c $(CPPFLAGS) $(INCLUDES) -o $@ $<
|
|
|
|
|
2011-08-23 16:25:37 +05:30
|
|
|
thin_dump: $(OBJECTS) thin_dump.o
|
|
|
|
g++ $(CPPFLAGS) -o $@ $+ $(LIBS)
|
|
|
|
|
|
|
|
thin_repair: $(OBJECTS) thin_repair.o
|
|
|
|
g++ $(CPPFLAGS) -o $@ $+ $(LIBS)
|
|
|
|
|
2011-08-31 18:23:46 +05:30
|
|
|
include unit-tests/Makefile.in
|
2011-07-13 19:39:33 +05:30
|
|
|
include $(subst .cc,.d,$(SOURCE))
|
2011-08-31 18:23:46 +05:30
|
|
|
include $(subst .cc,.d,$(TEST_SOURCE))
|