1bin_PROGRAMS = cmph
2noinst_PROGRAMS = bm_numbers
3lib_LTLIBRARIES = libcmph.la
4include_HEADERS = cmph.h cmph_types.h cmph_time.h chd_ph.h
5libcmph_la_SOURCES =  hash.h hash.c \
6		      jenkins_hash.h jenkins_hash.c \
7		      hash_state.h debug.h \
8		      vstack.h vstack.c vqueue.h vqueue.c\
9		      graph.h graph.c bitbool.h \
10		      cmph.h cmph.c cmph_structs.h cmph_structs.c\
11		      chm.h chm.c chm_structs.h \
12		      bmz.h bmz.c bmz_structs.h \
13                      bmz8.h bmz8.c bmz8_structs.h \
14		      bdz.h bdz.c bdz_structs.h \
15		      bdz_ph.h bdz_ph.c bdz_structs_ph.h \
16		      brz.h brz.c brz_structs.h \
17		      fch.h fch.c fch_structs.h \
18		      fch_buckets.h fch_buckets.c \
19		      chd.h chd.c chd_structs.h \
20		      chd_ph.h chd_ph.c chd_structs_ph.h \
21		      miller_rabin.h miller_rabin.c \
22		      buffer_manager.h buffer_manager.c \
23		      buffer_entry.h buffer_entry.c\
24		      select.h select.c select_lookup_tables.h \
25		      compressed_seq.h compressed_seq.c \
26		      compressed_rank.h compressed_rank.c \
27                      linear_string_map.h linear_string_map.c \
28		      cmph_benchmark.h cmph_benchmark.c \
29		      cmph_time.h
30
31libcmph_la_LDFLAGS = -version-info 0:0:0
32
33cmph_SOURCES = 	main.c wingetopt.h wingetopt.c
34cmph_LDADD = libcmph.la
35
36bm_numbers_SOURCES = bm_numbers.c
37bm_numbers_LDADD = libcmph.la
38