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

16 lines
353 B
Makefile
Raw Normal View History

2015-10-12 16:05:17 +02:00
ifneq (,$(filter prng_mersenne,$(USEMODULE)))
SRC += mersenne.c
endif
ifneq (,$(filter prng_minstd,$(USEMODULE)))
SRC += minstd.c
endif
ifneq (,$(filter prng_musl_lcg,$(USEMODULE)))
SRC += musl_lcg.c
endif
2015-11-27 13:42:40 +01:00
ifneq (,$(filter prng_tinymt32,$(USEMODULE)))
SRC += prng_tinymt32.c
DIRS += tinymt32
endif
2015-10-12 16:05:17 +02:00
2013-08-20 08:56:22 +02:00
include $(RIOTBASE)/Makefile.base