summaryrefslogtreecommitdiff
path: root/utils/Makefile.am
blob: 5396756101f97e53a7a0127aac00b59e40de871c (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
bin_PROGRAMS = reconstruct_weights atools const_reorder_model_trainer argument_reorder_model_trainer

noinst_PROGRAMS = \
  ts \
  phmt \
  dict_test \
  m_test \
  weights_test \
  logval_test \
  small_vector_test \
  stringlib_test \
  sv_test

TESTS = ts small_vector_test logval_test weights_test dict_test m_test sv_test stringlib_test

noinst_LIBRARIES = libutils.a

# EXTRA_DIST = test_data

libutils_a_SOURCES = \
  test_data \
  alias_sampler.h \
  alignment.h \
  alignment_io.h \
  argument_reorder_model.h \
  array2d.h \
  b64tools.h \
  batched_append.h \
  city.h \
  citycrc.h \
  corpus_tools.h \
  dict.h \
  exp_semiring.h \
  fast_sparse_vector.h \
  fdict.h \
  feature_vector.h \
  filelib.h \
  gzstream.h \
  hash.h \
  have_64_bits.h \
  indices_after.h \
  kernel_string_subseq.h \
  lbfgs.h \
  lbfgs.cpp \
  logval.h \
  m.h \
  mathvec.h \
  maxent.h \
  maxent.cpp \
  murmur_hash3.h \
  murmur_hash3.cc \
  named_enum.h \
  null_deleter.h \
  null_traits.h \
  owlqn.cpp \
  sgd.cpp \
  perfect_hash.h \
  prob.h \
  sampler.h \
  semiring.h \
  show.h \
  small_vector.h \
  sparse_vector.h \
  srl_sentence.h \
  star.h \
  static_utoa.h \
  stringlib.h \
  string_piece.hh \
  tdict.h \
  timing_stats.h \
  tree.h \
  tsuruoka_maxent.h \
  utoa.h \
  value_array.h \
  verbose.h \
  warning_compiler.h \
  warning_pop.h \
  warning_push.h \
  weights.h \
  wordid.h \
  writer.h \
  fast_lexical_cast.hpp \
  intrusive_refcount.hpp \
  alignment_io.cc \
  b64tools.cc \
  corpus_tools.cc \
  dict.cc \
  tdict.cc \
  fdict.cc \
  gzstream.cc \
  filelib.cc \
  stringlib.cc \
  string_piece.cc \
  synutils.h \
  sparse_vector.cc \
  timing_stats.cc \
  verbose.cc \
  weights.cc

if HAVE_CMPH
  libutils_a_SOURCES += perfect_hash.cc
endif

reconstruct_weights_SOURCES = reconstruct_weights.cc
reconstruct_weights_LDADD = libutils.a
atools_SOURCES = atools.cc
atools_LDADD = libutils.a
atools_LDFLAGS = $(STATIC_FLAGS)
const_reorder_model_trainer_SOURCES = constituent_reorder_model.cc
const_reorder_model_trainer_LDADD = libutils.a
argument_reorder_model_trainer_SOURCES = argument_reorder_model.cc
argument_reorder_model_trainer_LDADD = libutils.a

phmt_SOURCES = phmt.cc
phmt_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
ts_SOURCES = ts.cc
ts_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
m_test_SOURCES = m_test.cc
m_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
dict_test_SOURCES = dict_test.cc
dict_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
weights_test_SOURCES = weights_test.cc
weights_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
logval_test_SOURCES = logval_test.cc
logval_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
small_vector_test_SOURCES = small_vector_test.cc
small_vector_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
sv_test_SOURCES = sv_test.cc
sv_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)
stringlib_test_SOURCES = stringlib_test.cc
stringlib_test_LDADD = libutils.a $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS)

################################################################
# do NOT NOT NOT add any other -I includes NO NO NO NO NO ######
AM_CPPFLAGS = -DBOOST_TEST_DYN_LINK -W -Wall -I. -I$(top_srcdir) -DTEST_DATA=\"$(top_srcdir)/utils/test_data\"
################################################################