Makefile 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
#
# 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.
#
10
# link order is important here
L
Linus Torvalds 已提交
11 12 13 14 15

EXTRA_CFLAGS				+= -Idrivers/ide

ide-core-y += ide.o ide-io.o ide-iops.o ide-lib.o ide-probe.o ide-taskfile.o

16
# core IDE code
L
Linus Torvalds 已提交
17 18
ide-core-$(CONFIG_BLK_DEV_IDEPCI)	+= setup-pci.o
ide-core-$(CONFIG_BLK_DEV_IDEDMA)	+= ide-dma.o
19
ide-core-$(CONFIG_IDE_PROC_FS)		+= ide-proc.o
H
Hannes Reinecke 已提交
20
ide-core-$(CONFIG_BLK_DEV_IDEACPI)	+= ide-acpi.o
L
Linus Torvalds 已提交
21

22
obj-$(CONFIG_BLK_DEV_IDE)		+= ide-core.o
L
Linus Torvalds 已提交
23

24 25 26 27
ifeq ($(CONFIG_IDE_ARM), y)
	ide-arm-core-y += arm/ide_arm.o
	obj-y += ide-arm-core.o
endif
L
Linus Torvalds 已提交
28

29
obj-$(CONFIG_BLK_DEV_IDE)		+= legacy/ pci/
L
Linus Torvalds 已提交
30

31
obj-$(CONFIG_IDEPCI_PCIBUS_ORDER)	+= ide-scan-pci.o
L
Linus Torvalds 已提交
32

33 34 35 36 37 38 39 40
ifeq ($(CONFIG_BLK_DEV_CMD640), y)
	cmd640-core-y += pci/cmd640.o
	obj-y += cmd640-core.o
endif

obj-$(CONFIG_BLK_DEV_IDE)		+= cris/ ppc/
obj-$(CONFIG_BLK_DEV_IDEPNP)		+= ide-pnp.o
obj-$(CONFIG_IDE_H8300)			+= h8300/
L
Linus Torvalds 已提交
41 42
obj-$(CONFIG_IDE_GENERIC)		+= ide-generic.o

43 44
ide-cd_mod-y += ide-cd.o ide-cd_verbose.o

L
Linus Torvalds 已提交
45
obj-$(CONFIG_BLK_DEV_IDEDISK)		+= ide-disk.o
46
obj-$(CONFIG_BLK_DEV_IDECD)		+= ide-cd_mod.o
L
Linus Torvalds 已提交
47 48 49
obj-$(CONFIG_BLK_DEV_IDETAPE)		+= ide-tape.o
obj-$(CONFIG_BLK_DEV_IDEFLOPPY)		+= ide-floppy.o

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
ifeq ($(CONFIG_BLK_DEV_IDECS), y)
	ide-cs-core-y += legacy/ide-cs.o
	obj-y += ide-cs-core.o
endif

ifeq ($(CONFIG_BLK_DEV_PLATFORM), y)
	ide-platform-core-y += legacy/ide_platform.o
	obj-y += ide-platform-core.o
endif

obj-$(CONFIG_BLK_DEV_IDE)		+= arm/ mips/

# old hd driver must be last
ifeq ($(CONFIG_BLK_DEV_HD), y)
	hd-core-y += legacy/hd.o
	obj-y += hd-core.o
endif