thin-provisioning-tools/Makefile.in

71 lines
1.4 KiB
Makefile
Raw Normal View History

2011-08-31 18:31:48 +05:30
.PHONEY: all
2011-12-06 21:17:24 +05:30
PROGRAMS=\
thin_repair \
thin_dump \
thin_restore
all: $(PROGRAMS)
2011-08-31 18:31:48 +05:30
2011-06-16 12:46:10 +05:30
SOURCE=\
2011-09-12 16:19:42 +05:30
checksum.cc \
2011-08-22 15:12:13 +05:30
endian_utils.cc \
error_set.cc \
2011-09-16 14:36:37 +05:30
hex_dump.cc \
2011-10-10 18:40:30 +05:30
human_readable_format.cc \
2011-10-28 16:55:06 +05:30
metadata.cc \
2011-10-28 16:37:21 +05:30
metadata_checker.cc \
2011-10-28 16:43:03 +05:30
metadata_dumper.cc \
metadata_disk_structures.cc \
2011-10-28 18:31:44 +05:30
restore_emitter.cc \
2011-11-08 16:38:16 +05:30
space_map.cc \
space_map_disk.cc \
2011-11-09 15:51:25 +05:30
space_map_recursive.cc \
2011-11-16 18:47:49 +05:30
space_map_transactional.cc \
2011-10-28 16:51:58 +05:30
thin_pool.cc \
2011-10-10 19:36:07 +05:30
transaction_manager.cc \
xml_format.cc
2011-08-22 15:12:13 +05:30
PROGRAM_SOURCE=\
thin_dump.cc \
thin_repair.cc \
thin_restore.cc
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-11-24 18:13:03 +05:30
CPPFLAGS=-Wall -g -I$(TOP_DIR) -O8
2011-09-01 15:12:57 +05:30
#CPPFLAGS=-Wall -std=c++0x -g -I$(TOP_DIR)
LIBS=-lstdc++ -lboost_program_options -lexpat
2011-06-16 12:46:10 +05:30
.PHONEY: test-programs
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
g++ -MM -MT $(subst .cc,.o,$<) $(CPPFLAGS) $< > $@.$$$$; \
2011-10-24 22:34:19 +05:30
sed 's,\([^ :]*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
2011-06-27 15:15:30 +05:30
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)
2011-08-31 18:31:48 +05:30
thin_restore: $(OBJECTS) thin_restore.o
g++ $(CPPFLAGS) -o $@ $+ $(LIBS)
2011-08-23 16:25:37 +05:30
thin_repair: $(OBJECTS) thin_repair.o
g++ $(CPPFLAGS) -o $@ $+ $(LIBS)
2011-12-06 21:17:24 +05:30
.PHONEY: clean
clean:
rm -f *.o unit-tests/*.o $(TEST_PROGRAMS) $(PROGRAMS)
include unit-tests/Makefile.in
2011-07-13 19:39:33 +05:30
include $(subst .cc,.d,$(SOURCE))
include $(subst .cc,.d,$(TEST_SOURCE))
include $(subst .cc,.d,$(PROGRAM_SOURCE))