Blame view

RIOT/sys/random/Makefile 353 Bytes
fb11e647   vrobic   reseau statique a...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  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