13 lines
351 B
Makefile
13 lines
351 B
Makefile
CONTIKI_PROJECT = coap-example-client
|
|
# coap-example-observe-client is outdated but will be ported at a later point
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
# Do not try to build on Sky because of code size limitation
|
|
PLATFORMS_EXCLUDE = sky z1
|
|
|
|
# Include the CoAP implementation
|
|
MODULES += os/net/app-layer/coap
|
|
|
|
CONTIKI=../../..
|
|
include $(CONTIKI)/Makefile.include
|