2005-04-17 02:20:36 +04:00
#
# Makefile for the kernel ata, atapi, and ide block device drivers.
#
# 12 September 2000, Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
# Rewritten to use lists instead of if-statements.
#
# Note : at this point, these files are compiled on all systems.
# In the future, some of these should be built conditionally.
#
2008-01-26 22:13:07 +03:00
# link order is important here
2005-04-17 02:20:36 +04:00
EXTRA_CFLAGS += -Idrivers/ide
ide-core-y += ide.o ide-io.o ide-iops.o ide-lib.o ide-probe.o ide-taskfile.o
2008-01-26 22:13:07 +03:00
# core IDE code
2005-04-17 02:20:36 +04:00
ide-core-$(CONFIG_BLK_DEV_IDEPCI) += setup-pci.o
ide-core-$(CONFIG_BLK_DEV_IDEDMA) += ide-dma.o
2007-05-10 02:01:09 +04:00
ide-core-$(CONFIG_IDE_PROC_FS) += ide-proc.o
2007-02-07 20:19:37 +03:00
ide-core-$(CONFIG_BLK_DEV_IDEACPI) += ide-acpi.o
2005-04-17 02:20:36 +04:00
2008-01-26 22:13:07 +03:00
obj-$(CONFIG_BLK_DEV_IDE) += ide-core.o
2005-04-17 02:20:36 +04:00
2008-01-26 22:13:07 +03:00
i f e q ( $( CONFIG_IDE_ARM ) , y )
ide-arm-core-y += arm/ide_arm.o
obj-y += ide-arm-core.o
e n d i f
2005-04-17 02:20:36 +04:00
2008-01-26 22:13:07 +03:00
obj-$(CONFIG_BLK_DEV_IDE) += legacy/ pci/
2005-04-17 02:20:36 +04:00
2008-01-26 22:13:07 +03:00
obj-$(CONFIG_IDEPCI_PCIBUS_ORDER) += ide-scan-pci.o
2005-04-17 02:20:36 +04:00
2008-01-26 22:13:07 +03:00
i f e q ( $( CONFIG_BLK_DEV_CMD 640) , y )
cmd640-core-y += pci/cmd640.o
obj-y += cmd640-core.o
e n d i f
obj-$(CONFIG_BLK_DEV_IDE) += cris/ ppc/
obj-$(CONFIG_IDE_H8300) += h8300/
2005-04-17 02:20:36 +04:00
obj-$(CONFIG_IDE_GENERIC) += ide-generic.o
2008-04-18 02:46:21 +04:00
obj-$(CONFIG_BLK_DEV_IDEPNP) += ide-pnp.o
2005-04-17 02:20:36 +04:00
2008-02-02 01:09:25 +03:00
ide-cd_mod-y += ide-cd.o ide-cd_ioctl.o ide-cd_verbose.o
2008-02-02 01:09:23 +03:00
2005-04-17 02:20:36 +04:00
obj-$(CONFIG_BLK_DEV_IDEDISK) += ide-disk.o
2008-02-02 01:09:23 +03:00
obj-$(CONFIG_BLK_DEV_IDECD) += ide-cd_mod.o
2005-04-17 02:20:36 +04:00
obj-$(CONFIG_BLK_DEV_IDETAPE) += ide-tape.o
obj-$(CONFIG_BLK_DEV_IDEFLOPPY) += ide-floppy.o
2008-01-26 22:13:07 +03:00
i f e q ( $( CONFIG_BLK_DEV_IDECS ) , y )
ide-cs-core-y += legacy/ide-cs.o
obj-y += ide-cs-core.o
e n d i f
i f e q ( $( CONFIG_BLK_DEV_PLATFORM ) , y )
ide-platform-core-y += legacy/ide_platform.o
obj-y += ide-platform-core.o
e n d i f
obj-$(CONFIG_BLK_DEV_IDE) += arm/ mips/
# old hd driver must be last
i f e q ( $( CONFIG_BLK_DEV_HD ) , y )
hd-core-y += legacy/hd.o
obj-y += hd-core.o
e n d i f