]> git.lyx.org Git - lyx.git/blob - src/support/tests/Makefile.am
the AM_* flags patch
[lyx.git] / src / support / tests / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 EXTRA_DIST = test_convert test_lstrings regfiles
4
5 TESTS = \
6         test_convert \
7         test_lstrings
8
9 check_PROGRAMS = \
10         convert \
11         lstrings
12
13 AM_CPPFLAGS += $(BOOST_INCLUDES)
14
15 convert_LDADD = ../convert.o
16 convert_SOURCES = \
17         convert.C \
18         boost.C
19
20 lstrings_LDADD = ../lstrings.o
21 lstrings_SOURCES = \
22         lstrings.C \
23         boost.C
24
25 makeregfiles: ${check_PROGRAMS}
26         for all in ${check_PROGRAMS} ; do \
27                 ./$$all > ${srcdir}/regfiles/$$all ; \
28         done