Re: Using logical oprators in GNU makefile

2009-04-29 Thread Ralf Wildenhues
Hello, please don't top-post, thank you. * Koteswar16 wrote on Wed, Apr 29, 2009 at 06:37:21AM CEST: > > But how to do ORing in make file ? > i.e. > ifeq ($(var1), value1) || ($(var2), value2) You can either repeat the expansion, ifeq ($(var1), value1) $(foo) endif ifeq ($(var2), va

Re: Using logical oprators in GNU makefile

2009-04-29 Thread Koteswar16
f > > Cheers, > Ralf > > > > -- View this message in context: http://www.nabble.com/Using-logical-oprators-in-GNU-makefile-tp20774036p23290374.html Sent from the Gnu - Utils - Help mailing list archive at Nabble.com.

Re: Using logical oprators in GNU makefile

2008-12-07 Thread Ralf Wildenhues
Hello, * [EMAIL PROTECTED] wrote on Mon, Dec 01, 2008 at 08:40:38AM CET: > I want to use logical operators for checking if conditon.How do i use > this.. > I want something like this.. > if ((condition) &&(condition)) > can i write like above. Using GNU make, maybe this is what you need? ifeq ($

Using logical oprators in GNU makefile

2008-12-01 Thread manjushree
Hi, I want to use logical operators for checking if conditon.How do i use this.. I want something like this.. if ((condition) &&(condition)) can i write like above.