Date: Thu, 28 Jan 1999 09:34:49 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Sahab Yazdani cc: djgpp AT delorie DOT com Subject: Re: Intermidate AND Final Directory In-Reply-To: <36AF5A68.F368496@geocities.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Wed, 27 Jan 1999, Sahab Yazdani wrote: > I'm assuming that I can do this with *.o files too right? You can use vpath with *.o, but that won't cause GCC to *put* *.o files in that directory. vpath only tells Make where to look for *existing* files that are needed to build a target. > By the make manual do you mean the Make.INFO file? Yes. That's the only manual which comes with Make. To quickly find the description of vpath, type "info make", then press `i' (index search), type "vpath [Enter]" and then press `,' (comma) until you land in the section that describes vpath. The `i' command is a powerful means to use a manual like a reference.