f30d92b101
The switch is now performed through a configuration define, which has also been renamed to better match Contiki's naming conventions
17 lines
292 B
Makefile
17 lines
292 B
Makefile
DEFINES+=PROJECT_CONF_H=\"project-conf.h\"
|
|
|
|
# We need uIPv6, therefore we also need banking
|
|
HAVE_BANKING=1
|
|
UIP_CONF_IPV6=1
|
|
UIP_CONF_RPL=1
|
|
|
|
PROJECT_SOURCEFILES += slip-bridge.c
|
|
|
|
CONTIKI_PROJECT = border-router
|
|
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
CONTIKI = ../../..
|
|
|
|
include $(CONTIKI)/Makefile.include
|