avrdude-dev
[Top][All Lists]
Advanced

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

Re: [avrdude-dev] AVRDUDE and fusebits


From: Joerg Wunsch
Subject: Re: [avrdude-dev] AVRDUDE and fusebits
Date: Tue, 28 Oct 2003 10:23:27 +0100
User-agent: Mutt/1.2.5i

As Chris Visagie wrote:

> program: $(TARGET).hex $(TARGET).eep   /

No slash at the end of this line (neither forward nor backslash).  The
name on the left side of the colon is the target to make (i. e. `make
program' in your case), the names on the RHS are the dependent targets
that must be up to date.  To build the target, the following commands
(indented by a TAB) are to be executed.

>       $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) 
> $(AVRDUDE_WRITE_EEPROM)
> /

Use a backslash at the end of this line (immediately before the line
feed); this will tell `make' to continue the command on the next line.

>       $(AVRDUDE_WRITE_HFUSE) $(AVRDUDE_WRITE_LFUSE) $(AVRDUDE_WRITE_LOCK)

As you wrote it right now, `make' considered this to be a second
command, which it could not find.

Please read the `make' user manual...
-- 
J"org Wunsch                                           Unix support engineer
address@hidden        http://www.interface-systems.de/~j/




reply via email to

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