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
51b7227c9f
RIOT
/
boards
/
native
/
drivers
/
Makefile
6 lines
87 B
Makefile
Raw
Normal View
History
Unescape
Escape
simplify include structure for boards * do not overwrite CFLAGS in boards Makefile
2013-12-21 16:27:45 +01:00
MODULE
=
$(
BOARD
)
_base
moved native board drivers into separate directory split up drivers to avoid building unnecessary files
2013-06-12 16:23:34 +02:00
simplify include structure for boards * do not overwrite CFLAGS in boards Makefile
2013-12-21 16:27:45 +01:00
i
n
c
l
u
d
e
$(
RIOTBASE
)
/
M
a
k
e
f
i
l
e
.
b
a
s
e
Don't use INCLUDES for building any native at all. native modules will never need the dynamic INCLUDES, so we define our own NATIVEINCLUDES. Due to the current make structure, the only way to not use INCLUDES is to redefine the build rules.
2014-02-27 10:30:30 +01:00
native: override INCLUDES w/ NATIVEINCLUDES Currrently native overrides the object file targets, because it needs the different include paths to interact with libc and the OS. This PR simplifies their makefiles to only override the variable INCLUDES, instead of overriding the targets.
2014-07-06 05:02:45 +02:00
INCLUDES
=
$(
NATIVEINCLUDES
)
Copy Permalink