You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
347 B
16 lines
347 B
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux/SuperH SH-5 backends.
|
|
#
|
|
obj-y := entry.o probe.o switchto.o
|
|
|
|
obj-$(CONFIG_SH_FPU) += fpu.o
|
|
obj-$(CONFIG_KALLSYMS) += unwind.o
|
|
|
|
# CPU subtype setup
|
|
obj-$(CONFIG_CPU_SH5) += setup-sh5.o
|
|
|
|
# Primary on-chip clocks (common)
|
|
clock-$(CONFIG_CPU_SH5) := clock-sh5.o
|
|
|
|
obj-y += $(clock-y)
|
|
|