1# 2# Makefile for the Linux/MIPS kernel. 3# 4# Note! Dependencies are done automagically by 'make dep', which also 5# removes any old dependencies. DON'T put your own dependencies here 6# unless it's something special (ie not a .c file). 7# 8 9O_TARGET := pci-core.o 10 11obj-$(CONFIG_MIPS_BONITO64) += ops-bonito64.o 12obj-$(CONFIG_MIPS_GT64120) += ops-gt64120.o 13obj-$(CONFIG_MIPS_MSC) += ops-msc.o 14obj-$(CONFIG_MIPS_NILE4) += ops-nile4.o 15obj-$(CONFIG_SNI_RM200_PCI) += ops-sni.o 16obj-y += pci.o 17obj-$(CONFIG_PCI_AUTO) += pci_auto.o 18 19include $(TOPDIR)/Rules.make 20