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