To: djgpp AT delorie DOT com (djgpp mailing list) Subject: GRX20 make error Date: Tue, 01 Apr 97 12:20:40 GMT Message-ID: From: cbalciza AT mail DOT cccis DOT ro (Claudiu Balciza) in order to use GRX20 (recently downloaded) I ran MAKE.EXE in the GRX20 directory where the MAKEFILE file is. the output is: D:\APPS\DJGPP\GRX20>make cd src d:/apps/djgpp/bin/make.exe make.exe[1]: Entering directory `d:/apps/djgpp/grx20/src' make.exe[1]: *** No rule to make target `include/libgrx.h', needed by `draw/bitblt.o'. Stop. make.exe[1]: Leaving directory `d:/apps/djgpp/grx20/src' make.exe: *** [libs] Error 2 what does that mean ? the MAKEFILE file content is: # # GRX 2.0 makefile for DJGPP distribution version # include makedefs.gnu libs: $(STAMP) cd src $(MAKE) cd .. test: libs cd test $(MAKE) cd .. and the MAKEDEFS.GNU's: CC= gcc AR= ar RANLIB= ranlib STRIP= strip ifdef DEBUG CCOPT= -O6 -Wall -m486 -g -DDEBUG=$(DEBUG) LDOPT= -g else CCOPT= -O6 -Wall -m486 LDOPT= endif