mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 04:12:49 +01:00
18 lines
404 B
Makefile
18 lines
404 B
Makefile
MODULE = stm32_clk
|
|
|
|
SRC = stmclk_common.c
|
|
|
|
ifneq (,$(filter-out f0,$(filter f%,$(CPU_FAM))))
|
|
SRC += stmclk_fx.c
|
|
else ifneq (,$(filter $(CPU_FAM),f0))
|
|
SRC += stmclk_f0.c
|
|
else ifneq (,$(filter $(CPU_FAM),l0 l1))
|
|
SRC += stmclk_l0l1.c
|
|
else ifneq (,$(filter $(CPU_FAM),l4 wb))
|
|
SRC += stmclk_l4wb.c
|
|
else ifneq (,$(filter $(CPU_FAM),g0 g4))
|
|
SRC += stmclk_gx.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|