automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: build check_PROGRAMS


From: Alexandre Duret-Lutz
Subject: Re: build check_PROGRAMS
Date: Wed, 14 Sep 2005 00:38:29 +0200
User-agent: Gnus/5.110003 (No Gnus v0.3) Emacs/22.0.50 (gnu/linux)

>>> "BI" == Baurzhan Ismagulov <address@hidden> 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

[Prev in Thread] Current Thread [Next in Thread]