20 lines
366 B
Makefile
20 lines
366 B
Makefile
ifndef TARGET
|
|
TARGET=sensinode
|
|
endif
|
|
|
|
# Make absolutely certain that you specify your device here
|
|
DEFINES+=MODEL_N601,PROJECT_CONF_H
|
|
|
|
# We need uIPv6, therefore we also need banking
|
|
HAVE_BANKING=1
|
|
UIP_CONF_IPV6=1
|
|
|
|
PROJECT_SOURCEFILES += slip-bridge.c
|
|
|
|
CONTIKI_PROJECT = border-router
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
CONTIKI = ../../..
|
|
|
|
include $(CONTIKI)/Makefile.include
|