mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 15:39:42 +02:00
23 lines
370 B
Makefile
23 lines
370 B
Makefile
|
#
|
||
|
# Makefile for the Ingenic JZ4760.
|
||
|
#
|
||
|
|
||
|
# 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_JZ4760_F4760) += board-f4760.o
|
||
|
|
||
|
# PM support
|
||
|
|
||
|
obj-$(CONFIG_PM_LEGACY) +=pm.o
|
||
|
|
||
|
# CPU Frequency scaling support
|
||
|
|
||
|
obj-$(CONFIG_CPU_FREQ_JZ) +=cpufreq.o
|