1
Developers Corner / Re: Setting up the development equipment
« on: 26.02.2007 at 11:16:53 »
Reply to my own question.
..
make: *** No rule to make target `uartISR.c', needed by `uartISR.o'.
.. etc
This is a message that just tells you that the file `uartISR.c' can not be found.
I had the c-files in "project/src" but the makefile expected the files to be in "project"
I did this mistake because I followed examples on: http://www.yagarto.de/howto/yagarto1/index.html#htu
where they have a src directory for source-code (and suitable makefiles) and I looked on that but had my own makefile.
Problem solved.
Tips: using -d when using make gives extra debug output.
example:
make all -d
..
make: *** No rule to make target `uartISR.c', needed by `uartISR.o'.
.. etc
This is a message that just tells you that the file `uartISR.c' can not be found.
I had the c-files in "project/src" but the makefile expected the files to be in "project"
I did this mistake because I followed examples on: http://www.yagarto.de/howto/yagarto1/index.html#htu
where they have a src directory for source-code (and suitable makefiles) and I looked on that but had my own makefile.
Problem solved.
Tips: using -d when using make gives extra debug output.
example:
make all -d