aboutsummaryrefslogtreecommitdiff
path: root/src/bin/Makefile.am
blob: 13fc64cd86399dc3ea96c3b54b0bb8f018a30e61 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
AM_CPPFLAGS = -I$(srcdir)/../include -I$(srcdir)/../script $(ICU_FLAGS)
LDADD = ../script/libfstscript.la ../lib/libfst.la -lm -ldl

if HAVE_BIN
bin_PROGRAMS = fstarcsort fstclosure fstcompile fstcompose fstconcat \
fstconnect fstconvert fstdeterminize fstdifference fstdraw fstencode \
fstepsnormalize fstequal fstequivalent fstinfo fstintersect fstinvert \
fstmap fstminimize fstprint fstproject fstprune fstpush fstrandgen \
fstrelabel fstreplace fstreverse fstreweight fstrmepsilon \
fstshortestdistance fstshortestpath fstsymbols fstsynchronize fsttopsort \
fstunion

fstarcsort_SOURCES = fstarcsort.cc

fstclosure_SOURCES = fstclosure.cc

fstcompile_SOURCES = fstcompile.cc

fstcompose_SOURCES = fstcompose.cc

fstconcat_SOURCES = fstconcat.cc

fstconnect_SOURCES = fstconnect.cc

fstconvert_SOURCES = fstconvert.cc

fstdeterminize_SOURCES = fstdeterminize.cc

fstdifference_SOURCES = fstdifference.cc

fstdraw_SOURCES = fstdraw.cc

fstencode_SOURCES = fstencode.cc

fstepsnormalize_SOURCES = fstepsnormalize.cc

fstequal_SOURCES = fstequal.cc

fstequivalent_SOURCES = fstequivalent.cc

fstinfo_SOURCES = fstinfo.cc

fstintersect_SOURCES = fstintersect.cc

fstinvert_SOURCES = fstinvert.cc

fstmap_SOURCES = fstmap.cc

fstminimize_SOURCES = fstminimize.cc

fstprint_SOURCES = fstprint.cc

fstproject_SOURCES = fstproject.cc

fstprune_SOURCES = fstprune.cc

fstpush_SOURCES = fstpush.cc

fstrandgen_SOURCES = fstrandgen.cc

fstrelabel_SOURCES = fstrelabel.cc

fstreplace_SOURCES = fstreplace.cc

fstreverse_SOURCES = fstreverse.cc

fstreweight_SOURCES = fstreweight.cc

fstrmepsilon_SOURCES = fstrmepsilon.cc

fstshortestdistance_SOURCES = fstshortestdistance.cc

fstshortestpath_SOURCES = fstshortestpath.cc

fstsymbols_SOURCES = fstsymbols.cc

fstsynchronize_SOURCES = fstsynchronize.cc

fsttopsort_SOURCES = fsttopsort.cc

fstunion_SOURCES = fstunion.cc
endif