osd-contiki/examples/osd/er-rest-example-merkurboard/Makefile

91 lines
2.5 KiB
Makefile
Raw Normal View History

EXE=er-example-client er-example-server
all: $(EXE)
2014-11-19 22:06:38 +01:00
# use target "er-plugtest-server" explicitly when requried
2013-02-19 16:18:04 +01:00
2014-11-19 22:06:38 +01:00
CONTIKI=../../..
2013-02-19 16:18:04 +01:00
2013-07-30 17:46:44 +02:00
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
2013-02-19 16:18:04 +01:00
# automatically build RESTful resources including common resources
2014-11-19 22:06:38 +01:00
ifndef TARGET
REST_EXCLUDE=
2013-02-19 16:18:04 +01:00
else
2014-11-19 22:06:38 +01:00
ifeq ($(TARGET), native)
REST_EXCLUDE=
2014-11-19 22:06:38 +01:00
else
REST_EXCLUDE= ! -name 'res-plugtest*'
2014-11-19 22:06:38 +01:00
endif
2013-02-19 16:18:04 +01:00
endif
REST_RESOURCES_DIR = ./resources
REST_RESOURCES_DIR_COMMON = ../resources-common
REST_RESOURCES_FILES = $(notdir \
$(shell find $(REST_RESOURCES_DIR) -name '*.c' $(REST_EXCLUDE)) \
$(shell find $(REST_RESOURCES_DIR_COMMON) -name '*.c') \
)
2013-02-19 16:18:04 +01:00
PROJECTDIRS += $(REST_RESOURCES_DIR) $(REST_RESOURCES_DIR_COMMON)
2014-11-19 22:06:38 +01:00
PROJECT_SOURCEFILES += $(REST_RESOURCES_FILES)
2013-02-19 16:18:04 +01:00
# linker optimizations
SMALL=1
2014-11-19 22:06:38 +01:00
# REST Engine shall use Erbium CoAP implementation
APPS += er-coap
APPS += rest-engine
2013-02-19 16:18:04 +01:00
# optional rules to get assembly
#CUSTOM_RULE_C_TO_OBJECTDIR_O = 1
#CUSTOM_RULE_S_TO_OBJECTDIR_O = 1
2014-12-07 17:36:53 +01:00
CONTIKI_WITH_IPV6 = 1
2013-02-19 16:18:04 +01:00
include $(CONTIKI)/Makefile.include
2014-11-19 22:06:38 +01:00
# minimal-net target is currently broken in Contiki
ifeq ($(TARGET), minimal-net)
CFLAGS += -DHARD_CODED_ADDRESS=\"fdfd::10\"
${info INFO: er-example compiling with large buffers}
CFLAGS += -DUIP_CONF_BUFFER_SIZE=1300
CFLAGS += -DREST_MAX_CHUNK_SIZE=1024
CFLAGS += -DCOAP_MAX_HEADER_SIZE=176
2014-12-07 17:36:53 +01:00
CONTIKI_WITH_RPL=0
2014-11-19 22:06:38 +01:00
endif
2013-02-19 16:18:04 +01:00
# optional rules to get assembly
#$(OBJECTDIR)/%.o: asmdir/%.S
# $(CC) $(CFLAGS) -MMD -c $< -o $@
# @$(FINALIZE_DEPENDENCY)
#
#asmdir/%.S: %.c
# $(CC) $(CFLAGS) -MMD -S $< -o $@
# border router rules
$(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
2014-11-19 22:06:38 +01:00
sudo $(CONTIKI)/tools/tunslip6 -a 127.0.0.1 -p 60001 aaaa::1/64
connect-router-native: $(CONTIKI)/examples/ipv6/native-border-router/border-router.native
sudo $(CONTIKI)/exmples/ipv6/native-border-router/border-router.native -a 127.0.0.1 -p 60001 aaaa::1/64
2013-02-19 16:18:04 +01:00
2013-07-30 17:46:44 +02:00
connect-minimal:
2014-11-19 22:06:38 +01:00
sudo ip address add fdfd::1/64 dev tap0
avr-size-server: er-example-server.$(TARGET).sz
avr-size-client: er-example-server.$(TARGET).sz
flash-server: er-example-server.$(TARGET).u er-example-server.$(TARGET).eu
flash-client: er-example-client.$(TARGET).u er-example-client.$(TARGET).eu
.PHONY: flash-client avr-size-client flash-server avr-size-server
.PRECIOUS: er-example-server.$(TARGET).hex er-example-server.$(TARGET).eep \
er-example-client.$(TARGET).hex er-example-client.$(TARGET).eep