[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: complex gmake conditionals: NOT ( ifndef(arg1) AND ifdef(arg2) )
From: |
Boris Kolpackov |
Subject: |
Re: complex gmake conditionals: NOT ( ifndef(arg1) AND ifdef(arg2) ) |
Date: |
Wed, 19 May 2004 19:58:02 +0000 (UTC) |
User-agent: |
nn/6.6.5+RFC1522 |
<address@hidden> writes:
> But what do I do with something like
>
> #if ! ( (defined ( val3 ) ) || ( ! defined (val4) ) )
> key2 val5
> #endif
ifeq ($(val3)$(if $(val4),,t),)
-boris