My Makefile.am has something like this currently at the bottom: =========================================== check_PROGRAMS = \ test/avl/avl_iter_test \ test/avl/avl_test \ test/unicode/unicode_test
TESTS = $(check_PROGRAMS) test_avl_avl_iter_test_LDADD = -lquark test_avl_avl_test_LDADD = -lquark test_unicode_unicode_test_LDADD = -lquark =========================================== As the collection of tests grows it's going to get annoying to have to add an _LDADD entry for every single one separately. Is it possible to add an _LDADD for all check_PROGRAMS items in one blow? -Patrick
