1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#
# Makefile for the linux kernel device drivers.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...
SUB_DIRS := block char net misc #streams
MOD_SUB_DIRS := $(SUB_DIRS) sbus
ALL_SUB_DIRS := $(SUB_DIRS) pci sgi scsi sound cdrom isdn misc pnp macintosh
ifdef CONFIG_PCI
SUB_DIRS += pci
endif
ifdef CONFIG_SBUS
SUB_DIRS += sbus
endif
ifdef CONFIG_PPC
SUB_DIRS += macintosh
MOD_SUB_DIRS += macintosh
endif
ifdef CONFIG_SGI
SUB_DIRS += sgi
endif
# If CONFIG_SCSI is set, the core of scsi support will be added to the kernel,
# but some of the low-level things may also be modules.
ifeq ($(CONFIG_SCSI),y)
SUB_DIRS += scsi
MOD_SUB_DIRS += scsi
else
ifeq ($(CONFIG_SCSI),m)
MOD_SUB_DIRS += scsi
endif
endif
ifeq ($(CONFIG_SOUND),y)
SUB_DIRS += sound
else
ifeq ($(CONFIG_SOUND),m)
MOD_SUB_DIRS += sound
endif
endif
ifeq ($(CONFIG_PNP),y)
SUB_DIRS += pnp
MOD_SUB_DIRS += pnp
else
ifeq ($(CONFIG_PNP),m)
MOD_SUB_DIRS += pnp
endif
endif
ifneq ($(CONFIG_CD_NO_IDESCSI)$(CONFIG_BLK_DEV_IDECD)$(CONFIG_BLK_DEV_SR),)
SUB_DIRS += cdrom
MOD_SUB_DIRS += cdrom
endif
ifeq ($(CONFIG_ISDN),y)
SUB_DIRS += isdn
MOD_SUB_DIRS += isdn
else
ifeq ($(CONFIG_ISDN),m)
MOD_SUB_DIRS += isdn
endif
endif
ifeq ($(CONFIG_AP1000),y)
SUB_DIRS += ap1000
ALL_SUB_DIRS += ap1000
endif
# make will try to add $(MOD_SUB_DIRS).o to modules/MOD_LIST_NAME
# when MOD_LIST_NAME is set. We don't have hamradio.o and Linus
# sort-of insisted on making hamradio a subdirectory to drivers/net.
#
ifeq ($(CONFIG_HAMRADIO),y)
SUB_DIRS += net/hamradio
MOD_SUB_DIRS += net/hamradio
endif
include $(TOPDIR)/Rules.make
|