1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/examples/ccn-lite-relay/Makefile

41 lines
993 B
Makefile
Raw Normal View History

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
BOARD_WHITELIST := fox iotlab-m3 msba2 mulle native pba-d-01-kw2x samr21-xpro
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..
CFLAGS += -DDEVELHELP
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
USEMODULE += shell
USEMODULE += shell_commands
# Include packages that pull up and auto-init the link layer.
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
USEMODULE += gnrc_netdev_default
2015-10-26 17:41:52 +01:00
USEMODULE += auto_init_gnrc_netif
USEMODULE += timex
USEMODULE += xtimer
USEMODULE += random
USEMODULE += prng_minstd
USEPKG += tlsf
2015-12-07 21:17:40 +01:00
2015-10-26 17:41:52 +01:00
USEPKG += ccn-lite
USEMODULE += ccn-lite-utils
include $(RIOTBASE)/Makefile.include