Date: 10 Aug 2003 08:50:14 +0200 Message-Id: From: Eli Zaretskii To: djgpp AT delorie DOT com In-reply-to: (message from Monika Hendricks on 9 Aug 2003 11:42:31 GMT) Subject: Re: [grx245]installation problems References: <7263-Fri08Aug2003101530+0300-eliz AT elta DOT co DOT il> <3791-Fri08Aug2003181106+0300-eliz AT elta DOT co DOT il> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: Monika Hendricks > Newsgroups: comp.os.msdos.djgpp > Date: 9 Aug 2003 11:42:31 GMT > > I removed contrib directory, and installed grx246s.zip. Without > adjusting anything and calling make i got the same result as ever. That is _very_ weird. The important part of src/makefile.dj2 begins like this: all: $(GRX20ST) $(UTILP) clean: if exist bgi\*.o del bgi\*.o So it should have began building the $(GRX20ST) and $(UTILP) targets, not with `clean'. Make _always_ builds the first target by default, and `clean' is not the first target, it's the second one. Just in case: what program did you use to unzip the package? > How do you think about the commented lines in my last but one > posting, where i called make with the `-d'-switch? I think we need the output of "make -d" from both the top-level Make and the one that runs in the src subdirectory. That is, add "-d" to the switches passed to sub-Make in this line of contrib/grx246/makefile.dj2: libs: $(MAKE) -C src -f makefile.dj2 and then re-run the build process and post here its full transcript. Btw, you _are_ using a DJGPP port of GNU Make, right? And it's a fairly new version of Make, right? (Type "make --version" to be sure.) > Thanks a lot to you and Eli for helping me not losing hope. Don't give up, it will be solved soon.