-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile.am
53 lines (45 loc) · 1.48 KB
/
Makefile.am
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
44
45
46
47
48
49
50
51
52
53
# falco: quality control for sequencing read files
#
# Copyright (C) 2019 Guilherme De Sena Brandine and
# Andrew D. Smith
# Authors: Guilherme De Sena Brandine, Andrew Smith
#
# This program is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
EXTRA_DIST = README.md LICENSE Configuration example.fq test
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I $(top_srcdir)/src
CXXFLAGS = -O3 -DNDEBUG # default optimization on; override on cli
TESTS = test/falco.test
TEST_EXTENSIONS = .test
bin_PROGRAMS = falco
falco_CXXFLAGS = $(OPENMP_CXXFLAGS) $(AM_CXXFLAGS)
falco_CPPFLAGS = -DPROGRAM_PATH=\"$(abspath $(top_srcdir))\"
if ENABLE_HTS
falco_CPPFLAGS += -DUSE_HTS
endif
falco_SOURCES = \
src/falco.cpp \
src/FastqStats.cpp \
src/HtmlMaker.cpp \
src/Module.cpp \
src/StreamReader.cpp \
src/FalcoConfig.cpp \
src/OptionParser.cpp \
src/smithlab_utils.cpp \
src/Module.hpp \
src/FastqStats.hpp \
src/HtmlMaker.hpp \
src/StreamReader.hpp \
src/FalcoConfig.hpp \
src/OptionParser.hpp \
src/smithlab_utils.hpp \
src/aux.hpp
CLEANFILES = tests_build/test_data.tgz