2017-10-31 08:16:27 +00:00
|
|
|
all: udp-client udp-server
|
2011-08-09 05:02:16 +00:00
|
|
|
|
2017-11-01 20:02:21 +00:00
|
|
|
.PHONY: renode
|
|
|
|
renode: all
|
|
|
|
ifneq ($(TARGET),cc2538dk)
|
|
|
|
$(error Only the cc2538dk TARGET is supported for Renode demo scripts)
|
|
|
|
endif
|
|
|
|
ifndef SCRIPT
|
|
|
|
$(warning SCRIPT not defined! Using "rpl-udp.resc" as default)
|
|
|
|
renode rpl-udp.resc
|
|
|
|
else
|
|
|
|
ifeq ($(wildcard $(SCRIPT)),)
|
|
|
|
$(error SCRIPT "$(SCRIPT)" does not exist!)
|
|
|
|
endif
|
|
|
|
renode $(SCRIPT)
|
|
|
|
endif
|
|
|
|
|
2017-10-30 20:46:45 +00:00
|
|
|
CONTIKI=../..
|
2010-04-30 15:52:48 +00:00
|
|
|
include $(CONTIKI)/Makefile.include
|