Hello, I'm using AUTOMAKE_OPTIONS = dejagnu with automake 1.7.9 and I want to build check_PROGRAMS without executing them. Is it possible?
I've looked into the generated Makefile, the rule seems to be
check-am: all-am
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
$(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
, so I suppose it isn't possible.
Should I modify automake to be able to do that?
Thanks in advance,
Baurzhan.
