bug fix: rpl was not included correctly
This commit is contained in:
parent
06d5d49e50
commit
aecb4b03cc
1 changed files with 8 additions and 0 deletions
|
@ -88,6 +88,14 @@ ifdef WITH_UIP
|
||||||
CFLAGS += -DWITH_UIP=1
|
CFLAGS += -DWITH_UIP=1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
## Copied from Makefile.include, since Cooja overrides CFLAGS et al
|
||||||
|
ifdef UIP_CONF_IPV6
|
||||||
|
CFLAGS += -DUIP_CONF_IPV6=1
|
||||||
|
ifneq ($(UIP_CONF_RPL),0)
|
||||||
|
CFLAGS += -DUIP_CONF_IPV6_RPL=1
|
||||||
|
endif # UIP_CONF_RPL
|
||||||
|
endif # UIP_CONF_IPV6
|
||||||
|
|
||||||
REDEF_PRINTF=1 # Redefine functions to enable printf()s inside Cooja
|
REDEF_PRINTF=1 # Redefine functions to enable printf()s inside Cooja
|
||||||
|
|
||||||
### Define custom targets
|
### Define custom targets
|
||||||
|
|
Loading…
Reference in a new issue