mirror of https://gitee.com/openkylin/linux.git
17 lines
437 B
Makefile
17 lines
437 B
Makefile
obj-y += interrupt.o iommu.o setup.o spider-pic.o
|
|
obj-y += pervasive.o
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_SPU_FS) += spu-base.o spufs/
|
|
|
|
spu-base-y += spu_base.o spu_priv1.o
|
|
|
|
# needed only when building loadable spufs.ko
|
|
spufs-modular-$(CONFIG_SPU_FS) += spu_syscalls.o
|
|
obj-y += $(spufs-modular-m)
|
|
|
|
# always needed in kernel
|
|
spufs-builtin-$(CONFIG_SPU_FS) += spu_callbacks.o
|
|
obj-y += $(spufs-builtin-y) $(spufs-builtin-m)
|
|
|