70 lines
1.8 KiB
Makefile
70 lines
1.8 KiB
Makefile
all: rest-server-example coap-client-example
|
|
|
|
CONTIKI=../..
|
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
|
|
|
# for static routing, if enabled
|
|
ifneq ($(TARGET), minimal-net)
|
|
PROJECT_SOURCEFILES += static-routing.c
|
|
endif
|
|
|
|
# variable for root Makefile.include
|
|
WITH_UIP6=1
|
|
# for some platforms
|
|
UIP_CONF_IPV6=1
|
|
|
|
# variable for this Makefile
|
|
# configure CoAP implementation (3|6|7)
|
|
WITH_COAP=7
|
|
|
|
# must be CFLAGS not variables
|
|
# minimal-net does not support RPL, avoid redefine warnings
|
|
ifneq ($(TARGET), minimal-net)
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=1
|
|
endif
|
|
|
|
# linker optimizations
|
|
CFLAGS += -ffunction-sections
|
|
LDFLAGS += -Wl,--gc-sections,--undefined=_reset_vector__,--undefined=InterruptVectors,--undefined=_copy_data_init__,--undefined=_clear_bss_init__,--undefined=_end_of_init__
|
|
|
|
# REST framework, requires WITH_COAP
|
|
ifeq ($(WITH_COAP), 7)
|
|
${info INFO: compiling with CoAP-07}
|
|
CFLAGS += -DWITH_COAP=7
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-07
|
|
else ifeq ($(WITH_COAP), 6)
|
|
${info INFO: compiling with CoAP-06}
|
|
CFLAGS += -DWITH_COAP=6
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-06
|
|
else ifeq ($(WITH_COAP), 3)
|
|
${info INFO: compiling with CoAP-03}
|
|
CFLAGS += -DWITH_COAP=3
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-03
|
|
else
|
|
${info INFO: compiling with HTTP}
|
|
CFLAGS += -DWITH_HTTP
|
|
CFLAGS += -DREST=http_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=1
|
|
APPS += rest-http-engine
|
|
endif
|
|
|
|
APPS += erbium
|
|
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
$(CONTIKI)/tools/tunslip6: $(CONTIKI)/tools/tunslip6.c
|
|
(cd $(CONTIKI)/tools && $(MAKE) tunslip6)
|
|
|
|
connect-router: $(CONTIKI)/tools/tunslip6
|
|
sudo $(CONTIKI)/tools/tunslip6 aaaa::1/64
|
|
|
|
connect-router-cooja: $(CONTIKI)/tools/tunslip6
|
|
sudo $(CONTIKI)/tools/tunslip6 -a 127.0.0.1 aaaa::1/64
|