Makefile 1.8 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
17
ide-core-$(CONFIG_IDE_ATAPI)		+= ide-atapi.o
L
Linus Torvalds 已提交
18 19
ide-core-$(CONFIG_BLK_DEV_IDEPCI)	+= setup-pci.o
ide-core-$(CONFIG_BLK_DEV_IDEDMA)	+= ide-dma.o
20
ide-core-$(CONFIG_IDE_PROC_FS)		+= ide-proc.o
H
Hannes Reinecke 已提交
21
ide-core-$(CONFIG_BLK_DEV_IDEACPI)	+= ide-acpi.o
L
Linus Torvalds 已提交
22

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

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

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

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

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

A
Adrian Bunk 已提交
39
obj-$(CONFIG_BLK_DEV_IDE)		+= ppc/
40
obj-$(CONFIG_IDE_H8300)			+= h8300/
L
Linus Torvalds 已提交
41
obj-$(CONFIG_IDE_GENERIC)		+= ide-generic.o
42
obj-$(CONFIG_BLK_DEV_IDEPNP)		+= ide-pnp.o
L
Linus Torvalds 已提交
43

44
ide-cd_mod-y += ide-cd.o ide-cd_ioctl.o ide-cd_verbose.o
45

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

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
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