help-gnats
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: make file error


From: Chad Walstrom
Subject: Re: make file error
Date: Wed, 24 Apr 2002 09:16:51 -0500
User-agent: Mutt/1.3.28i

On Tue, Apr 23, 2002 at 06:09:01PM -0700, Claude Marshall wrote:
> What can possibly cause the following error in a make
> file:
> 
> makefile:5: missing separator (did you mean TAB
> instead of 8 spaces?). Stop.
> 
> Any help will be appreciated.

It means that your makefile has spaces instead of tabs.  This is a
syntatic "no-no".

# INCORRECT
target:
<spaces>gcc blah.c

# CORRECT
target:
<TAB>gcc blah.c

-- 
Chad Walstrom <address@hidden>                 | a.k.a. ^chewie
http://www.wookimus.net/                            | s.k.a. gunnarr

Attachment: pgpnqujc5iXAD.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]