|
From: Pete P. <pp...@us...> - 2001-08-28 23:12:18
|
Update of /cvsroot/linux-mips/linux/arch/mips/ite-boards/generic In directory usw-pr-cvs1:/tmp/cvs-serv28026/arch/mips/ite-boards/generic Modified Files: Makefile Log Message: * ev96100 new pci support * fixed a compile problem * it8172/ivr Makefile cleanup * it8172 IDE driver bug fixes Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/ite-boards/generic/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 2001/06/22 02:29:31 1.1.1.1 --- Makefile 2001/08/28 23:12:15 1.2 *************** *** 22,36 **** obj-y := it8172_rtc.o it8172_setup.o irq.o int-handler.o pmon_prom.o time.o lpc.o puts.o reset.o ! ifdef CONFIG_PCI ! obj-y += it8172_pci.o ! endif ! ! ifdef CONFIG_IT8172_CIR ! obj-y += it8172_cir.o ! endif ! ! ifdef CONFIG_REMOTE_DEBUG ! obj-y += dbg_io.o ! endif include $(TOPDIR)/Rules.make --- 22,28 ---- obj-y := it8172_rtc.o it8172_setup.o irq.o int-handler.o pmon_prom.o time.o lpc.o puts.o reset.o ! obj-$(CONFIG_PCI) += it8172_pci.o ! obj-$(CONFIG_IT8172_CIR) += it8172_cir.o ! obj-$(CONFIG_REMOTE_DEBUG) += dbg_io.o include $(TOPDIR)/Rules.make |