blob: b8e13132e7399ea0c509b0a9fdb8fbe60797d8a6 (
plain)
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
|
# Notes about libraries: "librtfl-tools.a" contains everything not
# depending on FLTK, which can so be used in command line tools;
# "librtfl-common.a" depens on FLTK, and also on the former.
AM_CPPFLAGS = \
-I$(top_srcdir)
noinst_LIBRARIES = librtfl-common.a librtfl-tools.a
bin_PROGRAMS = rtfl-findrepeat rtfl-tee
librtfl_common_a_SOURCES = \
about.hh \
about.cc \
fltk_lines.hh \
fltk_lines.cc
librtfl_tools_a_SOURCES = \
lines.hh \
lines.cc \
parser.hh \
parser.cc \
tools.hh \
tools.cc
rtfl_findrepeat_SOURCES = rtfl_findrepeat.cc
rtfl_findrepeat_LDADD = librtfl-tools.a ../lout/liblout.a
rtfl_tee_SOURCES = rtfl_tee.c
|