Date: Sun, 16 Mar 1997 16:03:43 +0300 (IDT) From: Eli Zaretskii To: Emmanuel Proulx cc: djgpp AT delorie DOT com Subject: Re: Guide To Installing DJGPP for CodeWright 4 (v.1.0) In-Reply-To: <01bc30ea$e1eb5c70$81326478@emmanuelp-nt4> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 14 Mar 1997, Emmanuel Proulx wrote: > There. Now edit your Makefile and find the line where the actual > compilation takes place. Add this redirection statement to it > " 2>proj.err". On my system, I have: > > $(COMPILE_CC) 2>C:/PATH/PROJ.ERR > > Notice the FORWARD slashes. This statement redirects the STDERR > device to the file PROJ.ERR. I know nothing about Codewright, but if that Makefile is about to be interpreted by the DJGPP port of Make, it will only work with non-standard shells, like 4DOS/NDOS or bash. If you don't have any of these installed, I think it will fail, because `2>' is not a valid redirection syntax (stock COMMAND.COM doesn't know how to redirect stderr). I can't test this, but I suspect that Make 3.75 ported to DJGPP won't support this even if you have 4DOS/NDOS as your shell.