Date: Thu, 13 May 1999 16:19:35 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Ephraim Ben-Ishai cc: djgpp AT delorie DOT com Subject: Re: excluding include files from precompilation In-Reply-To: <9074E89DACDDD2119C4D00805FEDBE89218489@ormail1.orckit.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Thu, 13 May 1999, Ephraim Ben-Ishai wrote: > I am using the gcc with the -MMD option. This is not enough for me. I need > to exclude other include files. Can I do this? You can make the headers which you don't want to see appear as system headers. For example, instead of this: #include "foo.h" write this: #include and add -I. to the compilation switches.