[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-gcc-list] Problem to get .coff
From: |
Frank |
Subject: |
Re: [avr-gcc-list] Problem to get .coff |
Date: |
Wed, 03 Jan 2007 17:00:58 +0100 |
User-agent: |
Thunderbird 1.5.0.9 (Windows/20061207) |
Hello
> make.exe: *** No rule to make target `obj/main.o', needed by
> `project3.elf'. Stop.
>
>> Process Exit Code: 2
>> Time Taken: 00:02
WinAVR in version 20060421 has an entry in the makefile
(C:\WinAVR\sample\makefile) that cause the same problem here:
.
.
# List C++ source files here. (C dependencies are automatically generated.)
CPPSRC = main.cpp
.
.
In version 20070101 this is corrected to;
.
.
# List C++ source files here. (C dependencies are automatically generated.)
CPPSRC =
.
.
So remove main.cpp and it works.
Regards
Frank