Blame view

RIOT/examples/ccn-lite-relay/Makefile 993 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  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
  CFLAGS += -DUSE_RONR
  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
  USEMODULE += auto_init_gnrc_netif
  USEMODULE += timex
  USEMODULE += xtimer
  USEMODULE += random
  USEMODULE += prng_minstd
  
  USEPKG += tlsf
  
  USEPKG += ccn-lite
  USEMODULE += ccn-lite-utils
  
  include $(RIOTBASE)/Makefile.include