Date: Tue, 13 Aug 1996 11:26:34 +0200 (IST) From: Eli Zaretskii To: Kay Hayen Cc: djgpp AT delorie DOT com Subject: Re: MAKEFILE In-Reply-To: <6EiByqTUccB@jocokko.edition.bonbit.org> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 12 Aug 1996, Kay Hayen wrote: > makefile. When making "obj/main.o" the gcc/gpp just quits with this error > message: > > g:\united\server>make > gcc > make.exe: *** [obj/main.o] Error -1 This usually means that Make cannot find gcc. Error -1 is returned when it cannot run the command line immediately preceeding the error message. Please make sure that gcc.exe is on your PATH. On my machine, typing "make obj/main.o" produced this: gcc gcc.exe: No input files make.exe: *** [obj/main.o] Error 1 which is normal, because gcc exits with status 1 when no files are mentioned on the command line.