2 # Makefile for the Linux kernel device drivers.
4 # Note! Dependencies are done automagically by 'make dep', which also
5 # removes any old dependencies. DON'T put your own dependencies here
6 # unless it's something special (not a .c file).
8 # Note 2! The CFLAGS definitions are now in the main makefile.
10 SUB_DIRS
:= block char net parport sound misc
11 MOD_SUB_DIRS
:= $(SUB_DIRS
)
12 ALL_SUB_DIRS
:= $(SUB_DIRS
) pci sgi scsi sbus cdrom isdn pnp i2o \
13 macintosh video dio zorro fc4 usb \
53 MOD_SUB_DIRS
+= macintosh
56 ifeq ($(CONFIG_USB
),y
)
60 ifeq ($(CONFIG_USB
),m
)
70 ifeq ($(CONFIG_I2O
),y
)
74 ifeq ($(CONFIG_I2O
),m
)
79 # If CONFIG_SCSI is set, the core of SCSI support will be added to the kernel,
80 # but some of the low-level things may also be modules.
81 ifeq ($(CONFIG_SCSI
),y
)
85 ifeq ($(CONFIG_SCSI
),m
)
90 ifeq ($(CONFIG_PNP
),y
)
94 ifeq ($(CONFIG_PNP
),m
)
99 ifneq ($(CONFIG_CD_NO_IDESCSI
)$(CONFIG_BLK_DEV_IDECD
)$(CONFIG_BLK_DEV_SR
)$(CONFIG_PARIDE_PCD
),)
101 MOD_SUB_DIRS
+= cdrom
104 ifeq ($(CONFIG_ISDN
),y
)
108 ifeq ($(CONFIG_ISDN
),m
)
118 ifeq ($(CONFIG_AP1000
),y
)
120 ALL_SUB_DIRS
+= ap1000
123 ifeq ($(CONFIG_FC4
),y
)
127 ifeq ($(CONFIG_FC4
),m
)
132 # When MOD_LIST_NAME is set, make will try to add $(MOD_SUB_DIRS).o to
133 # modules/MOD_LIST_NAME. We don't have hamradio.o and Linus
134 # sort of insisted on making hamradio/ a subdirectory of drivers/net/.
136 ifeq ($(CONFIG_HAMRADIO
),y
)
137 SUB_DIRS
+= net
/hamradio
138 MOD_SUB_DIRS
+= net
/hamradio
141 include $(TOPDIR
)/Rules.make