>>> "BI" == Baurzhan Ismagulov <[EMAIL PROTECTED]> writes:

 BI> Hello,
 BI> I'm using AUTOMAKE_OPTIONS = dejagnu with automake 1.7.9 and I want to
 BI> build check_PROGRAMS without executing them. Is it possible?

You mean building $(check_PROGRAMS) without executing the dejagnu tests?

Just add your own rule that depends on $(check_PROGRAMS):

.PHONY: check-norun
check-norun: $(check_PROGRAMS)

and type `make check-norun' instead of `make check'.


Or if you just need to disable the dejagnu tests occasionally,
try something like

make check RUNTEST=:
-- 
Alexandre Duret-Lutz

Shared books are happy books.     http://www.bookcrossing.com/friend/gadl



Reply via email to