1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/random/Makefile
2018-05-29 18:40:58 +02:00

15 lines
230 B
Makefile

SRC := random.c
BASE_MODULE := prng
SUBMODULES := 1
ifneq (,$(filter prng_fortuna,$(USEMODULE)))
DIRS += fortuna
endif
ifneq (,$(filter prng_tinymt32,$(USEMODULE)))
DIRS += tinymt32
endif
include $(RIOTBASE)/Makefile.base