-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.am
More file actions
43 lines (33 loc) · 1.27 KB
/
Makefile.am
File metadata and controls
43 lines (33 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
AM_CPPFLAGS = -I$(top_srcdir)/src $(BOOST_CPPFLAGS)
EXTRA_DIST = CMakeLists.txt
dist_doc_DATA = README.md
bin_PROGRAMS = ngshmmalign
ngshmmalign_SOURCES = \
src/aligner.hpp \
src/aligner_impl.hpp \
src/debug.hpp \
src/dna_array.hpp \
src/fasta.hpp \
src/fastq.hpp \
src/hmmalign.hpp \
src/hmmalign_impl.hpp \
src/index_impl.hpp \
src/reference.hpp \
src/reference_impl.hpp \
src/utility_functions.hpp \
src/main.cpp
ngshmmalign_LDADD = \
$(BOOST_LDFLAGS) $(BOOST_SYSTEM_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_IOSTREAMS_LIB) $(BOOST_REGEX_LIB)
# CHECKS
TESTS = $(check_PROGRAMS)
check_PROGRAMS = \
testsuite/dna_array_compile_test \
testsuite/type_caster_compile_test \
testsuite/reference_compile_test \
testsuite/hmmalign_forward_compile_test
testsuite_dna_array_compile_test_SOURCES = testsuite/dna_array_compile_test.cpp
testsuite_type_caster_compile_test_SOURCES = testsuite/type_caster_compile_test.cpp
testsuite_reference_compile_test_SOURCES = testsuite/reference_compile_test.cpp
testsuite_reference_compile_test_LDADD = $(BOOST_LDFLAGS) $(BOOST_SYSTEM_LIB)
testsuite_hmmalign_forward_compile_test_SOURCES = testsuite/hmmalign_forward_compile_test.cpp
testsuite_hmmalign_forward_compile_test_LDADD = $(BOOST_LDFLAGS) $(BOOST_SYSTEM_LIB)