mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
230 B
Makefile
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
|