2005-01-27 21:05:44 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
|
|
|
|
2006-03-05 18:11:11 +00:00
|
|
|
EXTRA_DIST = pch.h test_convert test_filetools test_lstrings regfiles
|
2005-07-12 23:42:23 +00:00
|
|
|
|
|
|
|
BUILT_SOURCES = $(PCH_FILE)
|
2005-02-25 05:08:08 +00:00
|
|
|
|
2005-01-27 21:05:44 +00:00
|
|
|
TESTS = \
|
|
|
|
test_convert \
|
2006-03-05 18:11:11 +00:00
|
|
|
test_filetools \
|
2005-01-27 21:05:44 +00:00
|
|
|
test_lstrings
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
|
|
|
convert \
|
2006-03-05 18:11:11 +00:00
|
|
|
filetools \
|
2005-01-27 21:05:44 +00:00
|
|
|
lstrings
|
|
|
|
|
2005-05-20 16:56:28 +00:00
|
|
|
AM_CPPFLAGS += $(BOOST_INCLUDES)
|
2005-01-27 21:05:44 +00:00
|
|
|
|
|
|
|
convert_LDADD = ../convert.o
|
|
|
|
convert_SOURCES = \
|
|
|
|
convert.C \
|
|
|
|
boost.C
|
|
|
|
|
2006-03-05 18:11:11 +00:00
|
|
|
filetools_LDADD = ../../debug.o ../libsupport.la $(BOOST_REGEX) $(BOOST_FILESYSTEM)
|
|
|
|
filetools_SOURCES = \
|
|
|
|
filetools.C \
|
|
|
|
boost.C
|
|
|
|
|
2005-01-27 21:05:44 +00:00
|
|
|
lstrings_LDADD = ../lstrings.o
|
|
|
|
lstrings_SOURCES = \
|
|
|
|
lstrings.C \
|
|
|
|
boost.C
|
|
|
|
|
2005-02-25 09:01:06 +00:00
|
|
|
makeregfiles: ${check_PROGRAMS}
|
2005-01-27 21:05:44 +00:00
|
|
|
for all in ${check_PROGRAMS} ; do \
|
2005-02-25 05:08:08 +00:00
|
|
|
./$$all > ${srcdir}/regfiles/$$all ; \
|
2005-01-27 21:05:44 +00:00
|
|
|
done
|