Date: Fri, 08 Aug 2003 18:11:06 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: djgpp AT delorie DOT com Message-Id: <3791-Fri08Aug2003181106+0300-eliz@elta.co.il> X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: (message from Monika Hendricks on 8 Aug 2003 11:42:15 GMT) Subject: Re: [grx245]installation problems References: <7263-Fri08Aug2003101530+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: 8 Aug 2003 11:42:15 GMT > > > Anyway, the problem seems to be that a line that is supposed to > > delete *.o files fails, right? > > I'm not sure. I would be happy if *.o files would be created. One possible problem might be that it does a "make clean" for some reason. I don't have the makefile in front of me, but it strikes me as something weird to do when building a library. > > Does it help to prepend a `-' character to > > the offending line in the Makefile? > > I put a `-' in front of "clean :" in makefile.dj2 and in > /src/makefile.dj2 (the first rule here deals with this "if exist del > bgi\*.o") with the following result: No, that's not what I meant. You need to prepend `-' to the _command_ that this rule runs, like this: clean: -if exist bgi\*.o del bgi\*.o