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

15 lines
230 B
Makefile
Raw Normal View History

SRC := random.c
BASE_MODULE := prng
SUBMODULES := 1
2018-03-12 21:48:24 +01:00
ifneq (,$(filter prng_fortuna,$(USEMODULE)))
DIRS += fortuna
endif
2015-11-27 13:42:40 +01:00
ifneq (,$(filter prng_tinymt32,$(USEMODULE)))
2017-09-21 15:20:30 +02:00
DIRS += tinymt32
2015-11-27 13:42:40 +01:00
endif
2015-10-12 16:05:17 +02:00
2013-08-20 08:56:22 +02:00
include $(RIOTBASE)/Makefile.base