Date: Mon, 30 Nov 1998 09:54:16 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Mike_and_Beth cc: djgpp AT delorie DOT com Subject: Re: make.info troubles In-Reply-To: <3661C677.7842@wco.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Sun, 29 Nov 1998, Mike_and_Beth wrote: > I've downloaded all djgpp /v2.. from simtel ftp. "info" runs for most > of it's nodes but not for the "make" node. I've found make.info but have > no idea how to hook it up to the "info" that currently runs. what do I > need to do to be able to use make.info ? First, make sure you have the latest version of info.exe (download and install v2gnu/txi312b.zip). If that still doesn't work, edit the file info/dir and make sure that the "make" line there says exactly this: * make: (make). > COPTS = -c > > test.exe : $(OBJS) > $(CC) $(COPTS) $(OBJS) -o test.exe This is wrong: the -c switch to GCC tells it to compile only, whereas what you want is to link the object files into an executable. A linking command line should not include -c.