Date: 10 Aug 2003 08:50:14 +0200 Message-Id: <un0ei0zx5.fsf@elta.co.il> From: Eli Zaretskii <eliz AT elta DOT co DOT il> To: djgpp AT delorie DOT com In-reply-to: <bh2tj9.e8.1@monikahendricks.fqdn.th-h.de> (message from Monika Hendricks on 9 Aug 2003 11:42:31 GMT) Subject: Re: [grx245]installation problems References: <bgtk9r DOT 2a0 DOT 1 AT monikahendricks DOT fqdn DOT th-h DOT de> <bgtmmg$55e$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> <bgu10c DOT 3dg DOT 1 AT monikahendricks DOT fqdn DOT th-h DOT de> <bgtqdu$bl3$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> <bgu2p7 DOT 3dg DOT 1 AT monikahendricks DOT fqdn DOT th-h DOT de> <7263-Fri08Aug2003101530+0300-eliz AT elta DOT co DOT il> <bh08hr DOT 3v0 DOT 1 AT monikahendricks DOT fqdn DOT th-h DOT de> <3791-Fri08Aug2003181106+0300-eliz AT elta DOT co DOT il> <bh0odi DOT 2p0 DOT 1 AT monikahendricks DOT fqdn DOT th-h DOT de> <Xns93D1C8339576asu1cornelledu AT 132 DOT 236 DOT 56 DOT 8> <bh2tj9 DOT e8 DOT 1 AT monikahendricks DOT fqdn DOT th-h DOT de> 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 <monika DOT hendricks AT t-online DOT de> > 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.