diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-08 00:53:00 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-08 00:53:00 +0000 |
commit | b8553086288629b4efb77e97f5582e08bc50ad65 (patch) | |
tree | 0a19bd1c21e148f35c7a0f76baa4f7a056b966b0 /drivers/Makefile | |
parent | 75b6d92f2dd5112b02f4e78cf9f35f9825946ef0 (diff) |
Merge with 2.4.0-test3-pre4.
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 9d42ab23d..a91c3355e 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -11,7 +11,8 @@ SUB_DIRS := block char net parport sound misc MOD_SUB_DIRS := $(SUB_DIRS) ALL_SUB_DIRS := $(SUB_DIRS) pci sgi ide scsi sbus cdrom isdn pnp i2o \ ieee1394 macintosh video dio zorro fc4 \ - usb nubus tc atm pcmcia i2c telephony + usb nubus tc atm pcmcia i2c telephony \ + acpi mtd ifdef CONFIG_DIO SUB_DIRS += dio @@ -30,6 +31,11 @@ else endif endif +ifdef CONFIG_MTD +SUB_DIRS += mtd +MOD_SUB_DIRS += mtd +endif + ifdef CONFIG_SBUS SUB_DIRS += sbus MOD_SUB_DIRS += sbus @@ -180,4 +186,9 @@ else endif endif +ifeq ($(CONFIG_ACPI),y) +SUB_DIRS += acpi +MOD_SUB_DIRS += acpi +endif + include $(TOPDIR)/Rules.make |