1
Fork 0
turbonss/cxxmph/Makefile.am

20 lines
695 B
Makefile
Raw Normal View History

noinst_PROGRAMS = cmph_hash_map_test mphtable_test trigraph_test
bin_PROGRAMS = cxxmph
2010-10-05 17:51:17 +03:00
lib_LTLIBRARIES = libcxxmph.la
2010-11-05 08:48:53 +02:00
include_HEADERS = cmph_hash_map.h mphtable.h MurmurHash2.h trigraph.h cmph_hash_function.h stringpiece.h
2010-06-28 22:01:18 +03:00
2010-11-05 08:48:53 +02:00
libcxxmph_la_SOURCES = MurmurHash2.h trigragh.h trigraph.cc mphtable.h mphtable.cc cmph_hash_function.h stringpiece.h
2010-10-05 17:51:17 +03:00
libcxxmph_la_LDFLAGS = -version-info 0:0:0
2010-06-28 22:01:18 +03:00
2010-10-05 17:51:17 +03:00
cmph_hash_map_test_LDADD = libcxxmph.la
2010-06-28 22:01:18 +03:00
cmph_hash_map_test_SOURCES = cmph_hash_map_test.cc
mphtable_test_LDADD = libcxxmph.la
mphtable_test_SOURCES = mphtable_test.cc
2010-10-28 03:17:09 +03:00
trigraph_test_LDADD = libcxxmph.la
trigraph_test_SOURCES = trigraph_test.cc
cxxmph_LDADD = libcxxmph.la
cxxmph_SOURCES = cxxmph.cc