diff options
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 1585fed46..71ee973cf 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -9,7 +9,7 @@ SUB_DIRS := block char net parport sound misc MOD_SUB_DIRS := $(SUB_DIRS) -ALL_SUB_DIRS := $(SUB_DIRS) pci sgi scsi sbus cdrom isdn pnp i2o \ +ALL_SUB_DIRS := $(SUB_DIRS) pci sgi scsi sbus cdrom isdn pnp i2o ieee1394 \ macintosh video dio zorro fc4 usb \ nubus tc ap1000 atm pcmcia i2c telephony @@ -100,6 +100,15 @@ else endif endif +ifeq ($(CONFIG_IEEE1394),y) +SUB_DIRS += ieee1394 +MOD_SUB_DIRS += ieee1394 +else + ifeq ($(CONFIG_IEEE1394),m) + MOD_SUB_DIRS += ieee1394 + endif +endif + ifeq ($(CONFIG_PNP),y) SUB_DIRS += pnp MOD_SUB_DIRS += pnp |