automake
[Top][All Lists]
Advanced

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

Re: EXEEXT and EXTRA_PROGRAMS


From: Stepan Kasal
Subject: Re: EXEEXT and EXTRA_PROGRAMS
Date: Wed, 11 Jan 2006 18:02:43 +0100
User-agent: Mutt/1.4.1i

Hello,

> EXTRA_PROGRAMS=foo
> address@hidden@
> correspoding configure.in:
> if (certain condidtions)
>       FOO=foo
> AC_SUBST(FOO)
> 
> However, if a platform that application is compiled for uses exe
> extensions, FOO still gets value 'foo' - resulting Makefile is incorrect

the fix is to use Automake conditional instead of @address@hidden

configure.ac (or configure.in) shall contain:

AM_CONDITIONAL([WANT_FOO], [certain condidtions])

and Makefile.am:

bin_PROGRAMS =
if WANT_FOO
  bin_PROGRAMS += foo
endif

Have a nice day,
        Stepan Kasal




reply via email to

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