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