mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 13:32:44 +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
|