mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
307 B
Makefile
16 lines
307 B
Makefile
USEPKG += nanocbor
|
|
|
|
USEMODULE += libcose_crypt
|
|
|
|
USEMODULE += random
|
|
|
|
ifneq (,$(filter libcose_crypt_hacl,$(USEMODULE)))
|
|
USEPKG += hacl
|
|
endif
|
|
ifneq (,$(filter libcose_crypt_monocypher,$(USEMODULE)))
|
|
USEPKG += monocypher
|
|
endif
|
|
ifneq (,$(filter libcose_crypt_c25519,$(USEMODULE)))
|
|
USEPKG += c25519
|
|
endif
|