blob: 7eb4502dfb614df4e1325388f1a3b16cbf578502 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# Makefile for the Linux/SuperH SH-Mobile backends.
#
# Power Management & Sleep mode
obj-$(CONFIG_PM) += pm.o sleep.o
obj-$(CONFIG_CPU_IDLE) += cpuidle.o
ifneq ($(CONFIG_CPU_SUBTYPE_SH7722)$(CONFIG_CPU_SUBTYPE_SH7723)$(CONFIG_CPU_SUBTYPE_SH7724),y)
obj-$(CONFIG_PM_RUNTIME) += pm_runtime.o
endif
|