2011-05-16 03:56:28 +03:00
|
|
|
AM_CXXFLAGS='-std=c++0x'
|
2011-05-16 01:48:01 +03:00
|
|
|
TESTS = $(check_PROGRAMS)
|
2011-05-16 02:47:42 +03:00
|
|
|
check_PROGRAMS = mph_map_test mph_table_test trigraph_test
|
2011-02-19 00:15:24 +02:00
|
|
|
noinst_PROGRAMS = bm_numbers bm_urls
|
2010-11-06 01:46:53 +02:00
|
|
|
bin_PROGRAMS = cxxmph
|
2010-10-05 17:51:17 +03:00
|
|
|
lib_LTLIBRARIES = libcxxmph.la
|
2011-05-16 02:47:42 +03:00
|
|
|
libcxxmph_la_SOURCES = MurmurHash2.h trigragh.h trigraph.cc mph_table.h mph_table.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/
|
2011-05-16 02:47:42 +03:00
|
|
|
cxxmph_include_HEADERS = mph_map.h mph_table.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
|
2010-10-25 05:12:47 +03:00
|
|
|
|
2011-05-16 02:47:42 +03:00
|
|
|
mph_table_test_LDADD = libcxxmph.la
|
|
|
|
mph_table_test_SOURCES = mph_table_test.cc
|
2010-10-28 03:17:09 +03:00
|
|
|
|
|
|
|
trigraph_test_LDADD = libcxxmph.la
|
|
|
|
trigraph_test_SOURCES = trigraph_test.cc
|
2010-11-06 01:46:53 +02:00
|
|
|
|
2011-02-19 00:15:24 +02:00
|
|
|
bm_numbers_LDADD = libcxxmph.la
|
|
|
|
bm_numbers_SOURCES = bm_numbers.cc
|
|
|
|
|
2011-02-14 00:40:26 +02:00
|
|
|
bm_urls_LDADD = libcxxmph.la
|
|
|
|
bm_urls_SOURCES = bm_urls.cc
|
|
|
|
|
2010-11-06 01:46:53 +02:00
|
|
|
cxxmph_LDADD = libcxxmph.la
|
|
|
|
cxxmph_SOURCES = cxxmph.cc
|