What is the best way to distribute data files for use with the check target?
I'm building a C library and using the check unit testing framework. Several functions load data from XML files and are tested with make check. These files need to be distributed, but not installed. Directory structure is simple: . |-- autom4te.cache |-- build-aux |-- src |-- tests tests/Makefile.am contains: TESTS = check_suggest check_PROGRAMS = check_suggest check_suggest_SOURCES = check_suggest.c $(top_builddir)/src/suggest.h check_suggest_CFLAGS = @CHECK_CFLAGS@ check_suggest_LDADD = @CHECK_LIBS@ $(top_builddir)/src/libsuggest.la check_DATA = sample.xml bogus.xml When I make check, sample.xml and bogus.xml aren't created... what should I do differently? -al -- Al Pacifico Seattle, WA
