diff options
Diffstat (limited to 'drivers/ieee1394/Makefile')
-rw-r--r-- | drivers/ieee1394/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/drivers/ieee1394/Makefile b/drivers/ieee1394/Makefile new file mode 100644 index 000000000000..e8b4d48d376e --- /dev/null +++ b/drivers/ieee1394/Makefile | |||
@@ -0,0 +1,26 @@ | |||
1 | # | ||
2 | # Makefile for the Linux IEEE 1394 implementation | ||
3 | # | ||
4 | |||
5 | ieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o \ | ||
6 | highlevel.o csr.o nodemgr.o oui.o dma.o iso.o \ | ||
7 | csr1212.o config_roms.o | ||
8 | |||
9 | obj-$(CONFIG_IEEE1394) += ieee1394.o | ||
10 | obj-$(CONFIG_IEEE1394_PCILYNX) += pcilynx.o | ||
11 | obj-$(CONFIG_IEEE1394_OHCI1394) += ohci1394.o | ||
12 | obj-$(CONFIG_IEEE1394_VIDEO1394) += video1394.o | ||
13 | obj-$(CONFIG_IEEE1394_RAWIO) += raw1394.o | ||
14 | obj-$(CONFIG_IEEE1394_SBP2) += sbp2.o | ||
15 | obj-$(CONFIG_IEEE1394_DV1394) += dv1394.o | ||
16 | obj-$(CONFIG_IEEE1394_ETH1394) += eth1394.o | ||
17 | obj-$(CONFIG_IEEE1394_AMDTP) += amdtp.o | ||
18 | obj-$(CONFIG_IEEE1394_CMP) += cmp.o | ||
19 | |||
20 | quiet_cmd_oui2c = OUI2C $@ | ||
21 | cmd_oui2c = $(CONFIG_SHELL) $(srctree)/$(src)/oui2c.sh < $< > $@ | ||
22 | |||
23 | targets := oui.c | ||
24 | $(obj)/oui.o: $(obj)/oui.c | ||
25 | $(obj)/oui.c: $(src)/oui.db $(src)/oui2c.sh FORCE | ||
26 | $(call if_changed,oui2c) | ||