Message-ID: <35099E9D.7A59@quantum.de> Date: Fri, 13 Mar 1998 22:01:17 +0100 From: Tom Chojnacki Reply-To: chojnack AT quantum DOT de Organization: Quantum Software GmbH, Dortmund, Germany MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: make error 131 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Precedence: bulk Hi! Sometimes when I compile my project under Win NT 4.0 compilations suddenly stops like that: GNU CPP version 2.6.3 (80386, BSD syntax) #include "..." search starts here: #include <...> search starts here: c:/djgpp/include /usr/local/include /usr/local/go32/include /usr/local/lib/gcc-lib/go32/2.6.1/include /usr/include End of search list. c:/djgpp/bin\cc1.exe c:/djgpp/tmp\ccb11102 -quiet -dumpbase improc.c -Wall -ver sion -o c:/djgpp/tmp\ccc11102 GNU C version 2.6.3 (80386, BSD syntax) compiled by GNU C version 2.6.3. c:/djgpp/bin\as.exe -o improc.o c:/djgpp/tmp\ccc11102 make: Error code 131 make: 'improc.o' removed. If I again do 'make' it is continued and finished properly. What is error 131 ? Here is my makefile: hou : ui.o improc.o gifio.o fg.o rht.o gcc -Wall -v -o hou ui.o improc.o gifio.o fg.o rht.o -lgrx -lm -lpc ui.o : ui.c types.h ui.h improc.h gifio.h fg.h rht.h defs.h glov.h gcc -Wall -v -c ui.c improc.o : improc.c types.h ui.h improc.h defs.h glovext.h gcc -Wall -v -c improc.c gifio.o : gifio.c types.h ui.h improc.h gifio.h defs.h glovext.h gcc -Wall -v -c gifio.c fg.o : fg.c types.h fg.h defs.h glovext.h gcc -Wall -v -c fg.c rht.o : rht.c types.h ui.h rht.h defs.h gcc -Wall -v -c rht.c