blob: 0d2da89d15cff8f989f4436f5b9f1e8618e9b05a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Makefile for the kernel ata, atapi, and ide block device drivers.
3#
4# 12 September 2000, Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
5# Rewritten to use lists instead of if-statements.
6#
7# Note : at this point, these files are compiled on all systems.
8# In the future, some of these should be built conditionally.
9#
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010010# link order is important here
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12EXTRA_CFLAGS += -Idrivers/ide
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014ide-core-y += ide.o ide-io.o ide-iops.o ide-lib.o ide-probe.o ide-taskfile.o
15
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010016# core IDE code
Linus Torvalds1da177e2005-04-16 15:20:36 -070017ide-core-$(CONFIG_BLK_DEV_IDEPCI) += setup-pci.o
18ide-core-$(CONFIG_BLK_DEV_IDEDMA) += ide-dma.o
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +020019ide-core-$(CONFIG_IDE_PROC_FS) += ide-proc.o
Hannes Reineckee3a59b42007-02-07 18:19:37 +010020ide-core-$(CONFIG_BLK_DEV_IDEACPI) += ide-acpi.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022obj-$(CONFIG_BLK_DEV_IDE) += ide-core.o
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010023
24ifeq ($(CONFIG_IDE_ARM), y)
25 ide-arm-core-y += arm/ide_arm.o
26 obj-y += ide-arm-core.o
27endif
28
29obj-$(CONFIG_BLK_DEV_IDE) += legacy/ pci/
30
31obj-$(CONFIG_IDEPCI_PCIBUS_ORDER) += ide-scan-pci.o
32
33ifeq ($(CONFIG_BLK_DEV_CMD640), y)
34 cmd640-core-y += pci/cmd640.o
35 obj-y += cmd640-core.o
36endif
37
38obj-$(CONFIG_BLK_DEV_IDE) += cris/ ppc/
39obj-$(CONFIG_BLK_DEV_IDEPNP) += ide-pnp.o
40obj-$(CONFIG_IDE_H8300) += h8300/
Linus Torvalds1da177e2005-04-16 15:20:36 -070041obj-$(CONFIG_IDE_GENERIC) += ide-generic.o
42
43obj-$(CONFIG_BLK_DEV_IDEDISK) += ide-disk.o
44obj-$(CONFIG_BLK_DEV_IDECD) += ide-cd.o
45obj-$(CONFIG_BLK_DEV_IDETAPE) += ide-tape.o
46obj-$(CONFIG_BLK_DEV_IDEFLOPPY) += ide-floppy.o
47
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010048ifeq ($(CONFIG_BLK_DEV_IDECS), y)
49 ide-cs-core-y += legacy/ide-cs.o
50 obj-y += ide-cs-core.o
51endif
52
53ifeq ($(CONFIG_BLK_DEV_PLATFORM), y)
54 ide-platform-core-y += legacy/ide_platform.o
55 obj-y += ide-platform-core.o
56endif
57
58obj-$(CONFIG_BLK_DEV_IDE) += arm/ mips/
59
60# old hd driver must be last
61ifeq ($(CONFIG_BLK_DEV_HD), y)
62 hd-core-y += legacy/hd.o
63 obj-y += hd-core.o
64endif