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

12 lines
321 B
Makefile
Raw Normal View History

ifeq (, $(RIOT_CHACHA_PRNG_DEFAULT))
RIOT_CHACHA_PRNG_DEFAULT := $(shell head -c 64 /dev/urandom | hexdump -e '"0x%4xull,"')
endif
CFLAGS += -DRIOT_CHACHA_PRNG_DEFAULT="$(RIOT_CHACHA_PRNG_DEFAULT)"
2023-08-29 19:25:14 +02:00
ifneq (,$(filter psa_riot_cipher_%,$(USEMODULE)))
DIRS += psa_riot_cipher
endif
include $(RIOTBASE)/Makefile.base