Date: Sun, 6 Jun 1999 11:15:49 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: dmitry AT ostankino DOT ucsd DOT edu cc: djgpp AT delorie DOT com Subject: Re: make & error -1 In-Reply-To: <7iv2mj$npe$1@nnrp1.deja.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 31 May 1999 dmitry AT ostankino DOT ucsd DOT edu wrote: > > make.exe: *** [blib\lib\Unicode\.exists] Error -1 > > The offending line seems to be: > > > config :: Makefile $(INST_LIBDIR)\.exists > > @$(NOOP) > > Where NOOP is defined as: NOOP = rem > > Does the error mean that make can't execute "rem"? No, this is not what the error means, probably, because a simple test Makefile that used rem worked for me. My guess would be that the problem is caused by your use of backslashes in file names (in general, if you must use them, you need to double each backslash). I suggest to switch to forward slashes instead. If the above doesn't help, please throw together the shortest Makefile that exhibits this behavior and post it.