Message-ID: <086f01c2e4fc$2e0f95a0$0600000a@broadpark.no> From: "Gisle Vanem" To: References: <3i5i6vsg9rgbfbn00p2dna50v1e943ucpf AT 4ax DOT com> Subject: Re: Problems with file names with Make Date: Fri, 7 Mar 2003 23:52:07 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1123 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1123 Reply-To: djgpp AT delorie DOT com "H Johnson" said: > > dep: > $(CC) $(CINCLUDE) -nostdinc -fno-builtin -M $(SRC_C) > ./depend.mk > With "-nostdinc", how is gcc supposed to find the std-headers? I would suggest using: dep: $(CC) $(CINCLUDE) -fno-builtin -MM $(SRC_C) > ./depend.mk --gv