Re: [SUGGESTION] Having 'make check' use AM_CPPFLAGS

2003-10-13 Thread Tom Tromey
Stephen == Stephen Torri [EMAIL PROTECTED] writes: Stephen TESTS = test_Foo Stephen test_Foo_SOURCES = test_Foo.cpp As you discovered, you have to list test_Foo in a _PROGRAMS variable. I suggest check_PROGRAMS, as this is what `check' is made for. An entry in TESTS doesn't suffice; these

Re: [SUGGESTION] Having 'make check' use AM_CPPFLAGS

2003-10-13 Thread Stephen Torri
On Mon, 2003-10-13 at 18:56, Tom Tromey wrote: Stephen == Stephen Torri [EMAIL PROTECTED] writes: Stephen TESTS = test_Foo Stephen test_Foo_SOURCES = test_Foo.cpp As you discovered, you have to list test_Foo in a _PROGRAMS variable. I suggest check_PROGRAMS, as this is what `check' is

[SUGGESTION] Having 'make check' use AM_CPPFLAGS

2003-10-11 Thread Stephen Torri
When I do the normal build the Makefile variable AM_CPPFLAGS is honored but it is not when I doing 'make check'. I am trying to compile a testing file that uses the same include headers as the files which it is suppose to test. For example: BEGIN EXAMPLE -- LT_LIBRARIES =