mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-04 13:06:38 +00:00
18 lines
295 B
Makefile
18 lines
295 B
Makefile
CONTIKI = ../../..
|
|
APPS = powertrace collect-view
|
|
CONTIKI_PROJECT = udp-sender udp-sink
|
|
PROJECT_SOURCEFILES += collect-common.c
|
|
|
|
WITH_UIP6=1
|
|
UIP_CONF_IPV6=1
|
|
CFLAGS+= -DUIP_CONF_IPV6_RPL
|
|
|
|
ifdef PERIOD
|
|
CFLAGS=-DPERIOD=$(PERIOD)
|
|
endif
|
|
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|