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

pkg/ccnl: clean up build dependencies

This commit is contained in:
PeterKietzmann 2018-06-10 10:48:03 +02:00
parent 917707ef1c
commit f9eb43cf97
3 changed files with 7 additions and 8 deletions

View File

@ -705,10 +705,6 @@ ifneq (,$(filter nanocoap_%,$(USEMODULE)))
USEMODULE += nanocoap
endif
ifneq (,$(filter ccn-lite,$(USEPKG)))
USEMODULE += ccn-lite-utils
endif
ifneq (,$(filter fatfs_vfs,$(USEMODULE)))
USEPKG += fatfs
USEMODULE += vfs

View File

@ -33,11 +33,7 @@ USEMODULE += gnrc_netdev_default
USEMODULE += auto_init_gnrc_netif
# This application dumps received packets to STDIO using the pktdump module
USEMODULE += gnrc_pktdump
USEMODULE += timex
USEMODULE += xtimer
USEMODULE += random
USEMODULE += prng_xorshift
USEMODULE += tlsf-malloc
USEPKG += ccn-lite

View File

@ -0,0 +1,7 @@
ifneq (,$(filter ccn-lite,$(USEPKG)))
USEMODULE += ccn-lite-utils
USEMODULE += evtimer
USEMODULE += random
USEMODULE += timex
USEMODULE += tlsf-malloc
endif