Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 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 Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 10 | # link order is important here |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | EXTRA_CFLAGS += -Idrivers/ide |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | ide-core-y += ide.o ide-io.o ide-iops.o ide-lib.o ide-probe.o ide-taskfile.o |
| 15 | |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 16 | # core IDE code |
Bartlomiej Zolnierkiewicz | f06ab34 | 2008-07-16 20:33:37 +0200 | [diff] [blame^] | 17 | ide-core-$(CONFIG_IDE_TIMINGS) += ide-timings.o |
Bartlomiej Zolnierkiewicz | 594c16d | 2008-07-15 21:21:58 +0200 | [diff] [blame] | 18 | ide-core-$(CONFIG_IDE_ATAPI) += ide-atapi.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | ide-core-$(CONFIG_BLK_DEV_IDEPCI) += setup-pci.o |
| 20 | ide-core-$(CONFIG_BLK_DEV_IDEDMA) += ide-dma.o |
Bartlomiej Zolnierkiewicz | ecfd80e | 2007-05-10 00:01:09 +0200 | [diff] [blame] | 21 | ide-core-$(CONFIG_IDE_PROC_FS) += ide-proc.o |
Hannes Reinecke | e3a59b4 | 2007-02-07 18:19:37 +0100 | [diff] [blame] | 22 | ide-core-$(CONFIG_BLK_DEV_IDEACPI) += ide-acpi.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | obj-$(CONFIG_BLK_DEV_IDE) += ide-core.o |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 25 | |
| 26 | ifeq ($(CONFIG_IDE_ARM), y) |
| 27 | ide-arm-core-y += arm/ide_arm.o |
| 28 | obj-y += ide-arm-core.o |
| 29 | endif |
| 30 | |
| 31 | obj-$(CONFIG_BLK_DEV_IDE) += legacy/ pci/ |
| 32 | |
| 33 | obj-$(CONFIG_IDEPCI_PCIBUS_ORDER) += ide-scan-pci.o |
| 34 | |
| 35 | ifeq ($(CONFIG_BLK_DEV_CMD640), y) |
| 36 | cmd640-core-y += pci/cmd640.o |
| 37 | obj-y += cmd640-core.o |
| 38 | endif |
| 39 | |
Adrian Bunk | 3f31b87 | 2008-04-28 23:44:42 +0200 | [diff] [blame] | 40 | obj-$(CONFIG_BLK_DEV_IDE) += ppc/ |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 41 | obj-$(CONFIG_IDE_H8300) += h8300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | obj-$(CONFIG_IDE_GENERIC) += ide-generic.o |
Bartlomiej Zolnierkiewicz | 2625cd5 | 2008-04-18 00:46:21 +0200 | [diff] [blame] | 43 | obj-$(CONFIG_BLK_DEV_IDEPNP) += ide-pnp.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Bartlomiej Zolnierkiewicz | 1780299 | 2008-02-01 23:09:25 +0100 | [diff] [blame] | 45 | ide-cd_mod-y += ide-cd.o ide-cd_ioctl.o ide-cd_verbose.o |
Bartlomiej Zolnierkiewicz | 972560f | 2008-02-01 23:09:23 +0100 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | obj-$(CONFIG_BLK_DEV_IDEDISK) += ide-disk.o |
Bartlomiej Zolnierkiewicz | 972560f | 2008-02-01 23:09:23 +0100 | [diff] [blame] | 48 | obj-$(CONFIG_BLK_DEV_IDECD) += ide-cd_mod.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | obj-$(CONFIG_BLK_DEV_IDETAPE) += ide-tape.o |
| 50 | obj-$(CONFIG_BLK_DEV_IDEFLOPPY) += ide-floppy.o |
| 51 | |
Bartlomiej Zolnierkiewicz | ade2daf | 2008-01-26 20:13:07 +0100 | [diff] [blame] | 52 | ifeq ($(CONFIG_BLK_DEV_IDECS), y) |
| 53 | ide-cs-core-y += legacy/ide-cs.o |
| 54 | obj-y += ide-cs-core.o |
| 55 | endif |
| 56 | |
| 57 | ifeq ($(CONFIG_BLK_DEV_PLATFORM), y) |
| 58 | ide-platform-core-y += legacy/ide_platform.o |
| 59 | obj-y += ide-platform-core.o |
| 60 | endif |
| 61 | |
| 62 | obj-$(CONFIG_BLK_DEV_IDE) += arm/ mips/ |
| 63 | |
| 64 | # old hd driver must be last |
| 65 | ifeq ($(CONFIG_BLK_DEV_HD), y) |
| 66 | hd-core-y += legacy/hd.o |
| 67 | obj-y += hd-core.o |
| 68 | endif |