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
|
## Process this file with automake to produce Makefile.in
LDADD = ../../libhfst/src/libhfst.la
AM_CPPFLAGS = -I$(top_srcdir)/libhfst/src/ -I. -g
AM_CPPFLAGS += -I${top_srcdir}/back-ends
AM_CXXFLAGS = -Wno-deprecated
# programs to build before unit etc. testing
check_PROGRAMS=test_rules test_constructors test_streams test_tokenizer \
test_transducer_functions test_hfst_basic_transducer test_flag_diacritics \
test_examples
# sources for programs
test_rules_SOURCES=test_rules.cc
test_constructors_SOURCES=test_constructors.cc
test_streams_SOURCES=test_streams.cc
test_tokenizer_SOURCES=test_tokenizer.cc
test_transducer_functions_SOURCES=test_transducer_functions.cc
test_hfst_basic_transducer_SOURCES=test_hfst_basic_transducer.cc
test_flag_diacritics_SOURCES=test_flag_diacritics.cc
test_examples_SOURCES=test_examples.cc
noinst_HEADERS=auxiliary_functions.cc
# programs to run for unit etc. testing
TESTS=test_rules test_constructors test_streams test_tokenizer \
test_transducer_functions test_hfst_basic_transducer test_flag_diacritics \
test_examples
# files needed for test programs
EXTRA_DIST=foobar.att test_transducers.att test_lexc.lexc test_lexc_fail.lexc
clean-local:
-rm -f *.hfst
|