22 lines
662 B
Makefile
22 lines
662 B
Makefile
noinst_PROGRAMS = graph_tests packed_mphf_tests mphf_tests select_tests compressed_seq_tests compressed_rank_tests
|
|
|
|
INCLUDES = -I../src/
|
|
|
|
graph_tests_SOURCES = graph_tests.c
|
|
graph_tests_LDADD = ../src/libcmph.la
|
|
|
|
packed_mphf_tests_SOURCES = packed_mphf_tests.c
|
|
packed_mphf_tests_LDADD = ../src/libcmph.la
|
|
|
|
mphf_tests_SOURCES = mphf_tests.c
|
|
mphf_tests_LDADD = ../src/libcmph.la
|
|
|
|
select_tests_SOURCES = select_tests.c
|
|
select_tests_LDADD = ../src/libcmph.la
|
|
|
|
compressed_seq_tests_SOURCES = compressed_seq_tests.c
|
|
compressed_seq_tests_LDADD = ../src/libcmph.la
|
|
|
|
compressed_rank_tests_SOURCES = compressed_rank_tests.c
|
|
compressed_rank_tests_LDADD = ../src/libcmph.la
|