Re: Query regarding Cygwin make/Gnu Make

2003-12-04 Thread Brian Ford
On Thu, 4 Dec 2003, Rajagopalan, Karthik wrote: > I found today a weird working difference between Cygwin Make against Gnu > Make. Let me explain the situation I faced. > Cygwin make *is* GNU make. > I have following piece of code as "test" target. Here $(EXE) takes .exe for > Windows and blank

Re: Query regarding Cygwin make/Gnu Make

2003-12-04 Thread Baurjan Ismagulov
Hello, Karthik. On Thu, Dec 04, 2003 at 03:04:28PM +0530, Rajagopalan, Karthik wrote: > test$(EXE) return -1 back because of encountering a error in code test.c. I'm not sure what values are meaningful for make and how -1 is interpreted: the argument of exit(3) seems to be (signed int), but bash

Query regarding Cygwin make/Gnu Make

2003-12-04 Thread Rajagopalan, Karthik
Hi, I found today a weird working difference between Cygwin Make against Gnu Make. Let me explain the situation I faced. I have following piece of code as "test" target. Here $(EXE) takes .exe for Windows and blank for Linux. test: cat test.dat | test$(EXE) 1> test.res 2>& dif