11 lines
172 B
Makefile
11 lines
172 B
Makefile
|
#
|
||
|
# Makefile for the linux kernel.
|
||
|
#
|
||
|
#
|
||
|
|
||
|
# Common objects
|
||
|
obj-y := time.o irq.o serial.o io.o id.o psc.o
|
||
|
|
||
|
# Board specific
|
||
|
obj-$(CONFIG_MACH_DAVINCI_EVM) += board-evm.o
|