mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 11:22:28 +02:00
23 lines
375 B
Makefile
23 lines
375 B
Makefile
|
#
|
||
|
# Makefile for the Ingenic JZ4730.
|
||
|
#
|
||
|
|
||
|
# Object file lists.
|
||
|
|
||
|
obj-y += prom.o irq.o time.o reset.o setup.o dma.o \
|
||
|
platform.o i2c.o
|
||
|
|
||
|
obj-$(CONFIG_PROC_FS) += proc.o
|
||
|
|
||
|
# board specific support
|
||
|
|
||
|
obj-$(CONFIG_JZ4730_PMP) += board-pmp.o
|
||
|
|
||
|
# CPU Frequency scaling support
|
||
|
|
||
|
obj-$(CONFIG_CPU_FREQ_JZ) +=cpufreq.o
|
||
|
|
||
|
# PM support
|
||
|
|
||
|
obj-$(CONFIG_PM_LEGACY) +=pm.o sleep.o
|