Compiling LEDblink

As a first BeagleBoard project (also my first Eclipse/Linux project), I'm attempting to build LEDblink as described in the tutorial here:

http://elinux.org/BeagleBoardEclipse

When I select Project -> Clean, I get the error:

make: *** [clean] Error 1 LEDblink line 0 C/C++ Problem

The tutorial says "it might give some errors the first time, because nothing is to be cleaned."

When I try the next step and select Project -> Build project, I get the error:

make: *** No rule to make target `LEDblink.o', needed by `LEDblink'. LEDblink line 0 C/C++ Problem

In Project > Properties, Location is:

/home/ja/workspace/LEDblink

and all four project files are in that location.

I welcome suggestions on what to do or where to look.

Jan

Hi Jan,

As a first BeagleBoard project (also my first Eclipse/Linux project),
I'm attempting to build LEDblink as described in the tutorial here:

BeagleBoardEclipse - eLinux.org

When I select Project -> Clean, I get the error:

make: *** [clean] Error 1 LEDblink line 0 C/C++ Problem

I get an error message that the removal of *.o files fails due to missing *.o files. This is fine if there are no *.o files the first time.

The tutorial says "it might give some errors the first time, because
nothing is to be cleaned."

When I try the next step and select Project -> Build project, I get
the error:

make: *** No rule to make target `LEDblink.o', needed by `LEDblink'.
LEDblink line 0 C/C++ Problem

>

In Project > Properties, Location is:

/home/ja/workspace/LEDblink

and all four project files are in that location.

I welcome suggestions on what to do or where to look.

What does happen if you navigate in a terminal window manually to /home/ja/workspace/LEDblink and call the make file manually? E.g.

cd /home/ja/workspace/LEDblink
make all

?

Are you sure you really created a new empty Makefile project in Eclipse and configured the additional three topics mentioned at above wiki page (disable automatic build, disable Scanner Configuration Builder, disable Scanner Configuration Builder)?

Best regards

Dirk