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