mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
331 B
Makefile
15 lines
331 B
Makefile
MODULE = stm32_clk
|
|
|
|
SRC = stmclk_common.c
|
|
|
|
_CPU_FAM_SHORT = $(subst stm32,,$(CPU_FAM))
|
|
ifneq (,$(filter f%,$(_CPU_FAM_SHORT)))
|
|
SRC += stmclk_fx.c
|
|
else ifneq (,$(filter $(_CPU_FAM_SHORT),l0 l1))
|
|
SRC += stmclk_l0l1.c
|
|
else ifneq (,$(filter $(_CPU_FAM_SHORT),l4 wb))
|
|
SRC += stmclk_l4wb.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|