automake
[Top][All Lists]
Advanced

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

Re: running tests with automake on windows with mingw...


From: Bob Friesenhahn
Subject: Re: running tests with automake on windows with mingw...
Date: Wed, 26 Jul 2006 17:56:50 -0500 (CDT)

On Wed, 26 Jul 2006, Ed Hartnett wrote:

I have no check target per se, just the automake primary. I have:

# Test the netCDF-3 library.
check_PROGRAMS = t_nc
TESTS = ${check_PROGRAMS}

This yields in the Makefile:

check_PROGRAMS = t_nc$(EXEEXT)

I see. It appears that the auto-extension of PROGRAMS (as explained in the automake URL you referenced) is causing the problem. This approach should work:

TESTPROGRAMS = t_nc
check_PROGRAMS = $(TESTPROGRAMS)
TESTS = $(TESTPROGRAMS)

Bob
======================================
Bob Friesenhahn
address@hidden, http://www.simplesystems.org/users/bfriesen/
GraphicsMagick Maintainer,    http://www.GraphicsMagick.org/




reply via email to

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