1
Fork 0
turbonss/cxxmph/Makefile.am

28 lines
935 B
Makefile
Raw Normal View History

2011-05-16 01:48:01 +03:00
TESTS = $(check_PROGRAMS)
2011-11-05 19:15:11 +02:00
check_PROGRAMS = mph_map_test mph_index_test trigraph_test
noinst_PROGRAMS = bm_index bm_map
bin_PROGRAMS = cxxmph
2010-10-05 17:51:17 +03:00
lib_LTLIBRARIES = libcxxmph.la
libcxxmph_la_SOURCES = MurmurHash2.h trigragh.h trigraph.cc mph_index.h mph_index.cc seeded_hash.h stringpiece.h benchmark.h benchmark.cc
2010-10-05 17:51:17 +03:00
libcxxmph_la_LDFLAGS = -version-info 0:0:0
2011-05-16 01:39:55 +03:00
cxxmph_includedir = $(includedir)/cxxmph/
cxxmph_include_HEADERS = mph_map.h mph_index.h MurmurHash2.h trigraph.h seeded_hash.h stringpiece.h
2010-06-28 22:01:18 +03:00
2011-05-16 02:47:42 +03:00
mph_map_test_LDADD = libcxxmph.la
mph_map_test_SOURCES = mph_map_test.cc
mph_index_test_LDADD = libcxxmph.la
mph_index_test_SOURCES = mph_index_test.cc
2010-10-28 03:17:09 +03:00
bm_index_LDADD = libcxxmph.la
bm_index_SOURCES = bm_common.cc bm_index.cc
2011-02-19 00:15:24 +02:00
2011-11-05 19:15:11 +02:00
trigraph_test_LDADD = libcxxmph.la
trigraph_test_SOURCES = trigraph_test.cc
bm_map_LDADD = libcxxmph.la
bm_map_SOURCES = bm_common.cc bm_map.cc
2011-02-14 00:40:26 +02:00
cxxmph_LDADD = libcxxmph.la
cxxmph_SOURCES = cxxmph.cc