mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 23:12:45 +01:00
21 lines
402 B
Makefile
21 lines
402 B
Makefile
include ../Makefile.sys_common
|
|
|
|
USEMODULE += ztimer
|
|
USEMODULE += ztimer_usec
|
|
|
|
USEMODULE += psa_crypto
|
|
|
|
USEMODULE += psa_asymmetric
|
|
USEMODULE += psa_asymmetric_ecc_ed25519
|
|
|
|
ifneq (1, $(TEST_KCONFIG))
|
|
CFLAGS += -DCONFIG_PSA_ASYMMETRIC_KEYPAIR_COUNT=1
|
|
CFLAGS += -DCONFIG_PSA_SINGLE_KEY_COUNT=1
|
|
endif
|
|
|
|
SHOULD_RUN_KCONFIG :=
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=4096
|
|
|
|
include $(RIOTBASE)/Makefile.include
|