kamalem2000 / avr-uip

Automatically exported from code.google.com/p/avr-uip
0 stars 0 forks source link

subfolders in project will produce builderror #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. use an existing project, tuxgraphics will do
2. create a subfolder for the project.
mkdir -p projects/TuxGraphics/test
3. put a source file into it and include this source file into the makefile:
$(NAME)_SOURCES = main.c clock-arch.c test/test.c

What is the expected output? What do you see instead?
expected output would be that it compiles flawlessly. but make produces an 
error:
Assembler messages:
Fatal error: can't create obj/test/test.o: No such file or directory

What version of the product are you using? On what operating system?
current svn. ubuntu 10.04.1 lts

Please provide any additional information below.
A Workaround is to create these folder per hand like:
cd projects/TuxGraphics
make
# error here
mkdir -p obj/test
make
# builds fine

Original issue reported on code.google.com by sperbers...@googlemail.com on 6 Dec 2010 at 1:21

GoogleCodeExporter commented 9 years ago
Thank you for reporting this.
I'll look into it and fix the build.

Original comment by qarc...@gmail.com on 17 Feb 2011 at 6:48

GoogleCodeExporter commented 9 years ago
Fixed in svn rev 30 

Thank you

Original comment by qarc...@gmail.com on 18 Feb 2011 at 12:20

GoogleCodeExporter commented 9 years ago

Original comment by qarc...@gmail.com on 29 Apr 2011 at 9:00