brintos

brintos / linux-shallow public Read only

0
0
Text · 880 B · 1ff550e Raw
23 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the Linux IEEE 1394 implementation4#5 6firewire-core-y += core-trace.o core-card.o core-cdev.o core-device.o \7                   core-iso.o core-topology.o core-transaction.o8firewire-ohci-y += ohci.o9firewire-sbp2-y += sbp2.o10firewire-net-y  += net.o11 12obj-$(CONFIG_FIREWIRE)      += firewire-core.o13obj-$(CONFIG_FIREWIRE_OHCI) += firewire-ohci.o14obj-$(CONFIG_FIREWIRE_SBP2) += firewire-sbp2.o15obj-$(CONFIG_FIREWIRE_NET)  += firewire-net.o16obj-$(CONFIG_FIREWIRE_NOSY) += nosy.o17obj-$(CONFIG_PROVIDE_OHCI1394_DMA_INIT) += init_ohci1394_dma.o18 19obj-$(CONFIG_FIREWIRE_KUNIT_UAPI_TEST) += uapi-test.o20obj-$(CONFIG_FIREWIRE_KUNIT_PACKET_SERDES_TEST) += packet-serdes-test.o21obj-$(CONFIG_FIREWIRE_KUNIT_SELF_ID_SEQUENCE_HELPER_TEST) += self-id-sequence-helper-test.o22obj-$(CONFIG_FIREWIRE_KUNIT_OHCI_SERDES_TEST) += ohci-serdes-test.o23