mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
321 B
Makefile
12 lines
321 B
Makefile
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)"
|
|
|
|
ifneq (,$(filter psa_riot_cipher_%,$(USEMODULE)))
|
|
DIRS += psa_riot_cipher
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|