2015-10-26 17:41:52 +01:00
|
|
|
APPLICATION = ccn-lite-relay
|
|
|
|
|
|
|
|
# If no BOARD is found in the environment, use this default:
|
|
|
|
BOARD ?= native
|
|
|
|
|
2024-02-01 13:55:02 +01:00
|
|
|
BOARD_WHITELIST := iotlab-m3 msba2 mulle native native64 nrf52dk nrf52840dk \
|
2019-08-22 14:56:08 +02:00
|
|
|
pba-d-01-kw2x samr21-xpro
|
2015-10-26 17:41:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
# This has to be the absolute path to the RIOT base directory:
|
|
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
|
|
|
2017-11-19 14:12:25 +01:00
|
|
|
# Comment this out to disable code in RIOT that does safety checking
|
|
|
|
# which is not needed in a production environment but helps in the
|
|
|
|
# development process:
|
|
|
|
DEVELHELP ?= 1
|
|
|
|
|
2015-10-26 17:41:52 +01:00
|
|
|
CFLAGS += -DUSE_LINKLAYER
|
2016-07-19 20:34:44 +02:00
|
|
|
CFLAGS += -DUSE_RONR
|
2015-10-26 17:41:52 +01:00
|
|
|
CFLAGS += -DCCNL_UAPI_H_
|
|
|
|
CFLAGS += -DUSE_SUITE_NDNTLV
|
|
|
|
CFLAGS += -DNEEDS_PREFIX_MATCHING
|
|
|
|
CFLAGS += -DNEEDS_PACKET_CRAFTING
|
|
|
|
|
|
|
|
# Change this to 0 show compiler invocation lines by default:
|
|
|
|
QUIET ?= 1
|
|
|
|
|
|
|
|
USEMODULE += ps
|
2022-08-16 16:35:20 +02:00
|
|
|
USEMODULE += shell_cmds_default
|
2015-10-26 17:41:52 +01:00
|
|
|
# Include packages that pull up and auto-init the link layer.
|
|
|
|
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
2021-08-31 10:54:48 +02:00
|
|
|
USEMODULE += netdev_default
|
2015-10-26 17:41:52 +01:00
|
|
|
USEMODULE += auto_init_gnrc_netif
|
2017-11-27 21:40:54 +01:00
|
|
|
# This application dumps received packets to STDIO using the pktdump module
|
|
|
|
USEMODULE += gnrc_pktdump
|
2018-04-05 12:00:13 +02:00
|
|
|
USEMODULE += prng_xorshift
|
2015-12-07 21:17:40 +01:00
|
|
|
|
2015-10-26 17:41:52 +01:00
|
|
|
USEPKG += ccn-lite
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|