15 lines
323 B
Makefile
15 lines
323 B
Makefile
CONTIKI_PROJECT = coap-example-server
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
# Do not try to build on Sky because of code size limitation
|
|
PLATFORMS_EXCLUDE = sky
|
|
|
|
# Include the CoAP implementation
|
|
MODULES += os/net/app-layer/coap
|
|
|
|
# Include CoAP resources
|
|
MODULES_REL += ./resources
|
|
|
|
CONTIKI=../../..
|
|
include $(CONTIKI)/Makefile.include
|