This website requires JavaScript.
Explore
Help
Sign In
RIOT-OS
/
RIOT
Watch
1
Star
0
Fork
0
You've already forked RIOT
mirror of
https://github.com/RIOT-OS/RIOT.git
synced
2024-12-29 04:50:03 +01:00
Code
Releases
Activity
53433a1344
RIOT
/
cpu
/
lpc1768
/
Makefile.include
4 lines
87 B
Makefile
Raw
Normal View
History
Unescape
Escape
make: replace MAKEBASE with RIOTBASE closes https://github.com/RIOT-OS/RIOT/issues/959
2014-04-01 16:37:07 +02:00
INCLUDES
+=
-I
$(
RIOTBASE
)
/cpu/lpc1768/include
simplified and unified cpu build structure
2013-12-22 20:02:59 +01:00
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-02-15 12:31:43 +01:00
export
UNDEF
+=
$(
BINDIR
)
cpu/syscalls.o
Copy Permalink