-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
48 lines (41 loc) · 1.15 KB
/
Makefile.am
File metadata and controls
48 lines (41 loc) · 1.15 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
44
45
46
47
48
bin_PROGRAMS = CreateBloom FindExons
CreateBloom_CPPFLAGS = -I$(top_srcdir)/Common
CreateBloom_SOURCES = \
Common/Uncompress.cpp \
Common/Uncompress.h \
Common/StringUtil.h \
Common/SignalHandler.cpp \
Common/SignalHandler.h \
Common/Fcontrol.cpp \
Common/Fcontrol.h \
Common/nthist.hpp \
Common/nthash.hpp \
Common/ntHashIterator.hpp \
Common/BloomFilter.hpp \
CreateBloom.cpp
FindExons_CPPFLAGS = -I$(top_srcdir)/Common
FindExons_SOURCES = \
Common/FastaReader.cpp \
Common/FastaReader.h \
Common/FastaConcat.h \
Common/IOUtil.h \
Common/StringUtil.h \
Common/SignalHandler.cpp \
Common/SignalHandler.h \
Common/Sequence.cpp \
Common/Sequence.h \
Common/Options.cpp \
Common/Options.h \
Common/pstream.h \
Common/nthist.hpp \
Common/nthash.hpp \
Common/ntHashIterator.hpp \
Common/BloomFilter.hpp \
FindExons.cpp
dist_bin_SCRIPTS= MakeSplicegraph.py
dist_doc_DATA = \
ChangeLog \
COPYRIGHT \
LICENSE \
README.md
EXTRA_DIST=autogen.sh