9215081f41
- It now plays nicely with the cc2531 USB dongle - We build it for the dongle by default - Debugging with cc2530dk functions instead of printf - Using __nonbanked optimisations - During prefix requests, invert LED blinking to make things more visible - Removed leftover include - Code style fixes See Pull Request #21
20 lines
355 B
Makefile
20 lines
355 B
Makefile
# To build for the cc2531 USB stick:
|
|
DEFINES+=MODEL_CC2531=1,
|
|
|
|
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
|