1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/msba2-common
René Kijewski 3f59eefbaf Use subfolders in bin dir
Creating all object files in one directory is bound to produce name
clashes. RIOT developers may take care to use unique file names, but
external packages surely don't.

With this change all the objects of a module (e.g. `shell`) will be
created in `bin/$(BOARD)/$(MODULE)`.

I compared the final linker command before and after the change. The
`.o` files (e.g. `startup.o`, `syscall.o` ...) are included in the same
order. Neglecting the changed path name where the `.o` files reside, the
linker command stays exactly the same.

A major problem could be third party boards, because the location of the
`startup.o` needs to the specified now in
`boards/$(BOARD)/Makefile.include`, e.g.
```Makefile
export UNDEF += $(BINDIR)msp430_common/startup.o
```
2014-04-09 00:28:14 +02:00
..
drivers remove trailing whitespace and newlines 2014-02-11 18:45:06 +01:00
include moved pllfeed inline function to header 2014-01-20 19:38:01 +01:00
tools "Exterminate } else {" 2014-02-16 23:29:47 +01:00
board_common_init.c moved pllfeed inline function to header 2014-01-20 19:38:01 +01:00
board_config.c addressed comments from @mehlis 2014-02-03 00:47:38 +01:00
lpc2387-timer3.c remove trailing whitespace and newlines 2014-02-11 18:45:06 +01:00
Makefile make: don't ignore failures in for loops 2014-03-12 11:09:04 +01:00
Makefile.dep Eliminate findstring in more places 2014-02-14 14:30:16 +01:00
Makefile.include Use subfolders in bin dir 2014-04-09 00:28:14 +02:00