diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-10-24 14:19:11 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-12-07 15:32:29 -0500 |
commit | def4d8733b8b8fed521957a7fd546714dd491b91 (patch) | |
tree | 5a9833faf86de150fd55ef1dd799f908cc061c9a /drivers/ieee1394/Makefile | |
parent | 7f5880394c8ab01854c0cba288352a1a77d5ea82 (diff) |
ieee1394: only build OUI database files if config enabled
Only build IEEE1394 OUI database files if the config option is enabled.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/Makefile')
-rw-r--r-- | drivers/ieee1394/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/ieee1394/Makefile b/drivers/ieee1394/Makefile index 6f53611fe255..d9650d3d77a0 100644 --- a/drivers/ieee1394/Makefile +++ b/drivers/ieee1394/Makefile | |||
@@ -3,8 +3,11 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | ieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o \ | 5 | ieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o \ |
6 | highlevel.o csr.o nodemgr.o oui.o dma.o iso.o \ | 6 | highlevel.o csr.o nodemgr.o dma.o iso.o \ |
7 | csr1212.o config_roms.o | 7 | csr1212.o config_roms.o |
8 | ifdef CONFIG_IEEE1394_OUI_DB | ||
9 | ieee1394-objs += oui.o | ||
10 | endif | ||
8 | 11 | ||
9 | obj-$(CONFIG_IEEE1394) += ieee1394.o | 12 | obj-$(CONFIG_IEEE1394) += ieee1394.o |
10 | obj-$(CONFIG_IEEE1394_PCILYNX) += pcilynx.o | 13 | obj-$(CONFIG_IEEE1394_PCILYNX) += pcilynx.o |