mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
21151fd8f0
Nowadays *-objs list is just for user space programs. This commit obsolete the usage, and simplify Makefile for firewire KUnit tests since the tests are not composite objects. Link: https://lore.kernel.org/r/20240508105351.532693-1-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
21 lines
720 B
Makefile
21 lines
720 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux IEEE 1394 implementation
|
|
#
|
|
|
|
firewire-core-y += core-trace.o core-card.o core-cdev.o core-device.o \
|
|
core-iso.o core-topology.o core-transaction.o
|
|
firewire-ohci-y += ohci.o
|
|
firewire-sbp2-y += sbp2.o
|
|
firewire-net-y += net.o
|
|
|
|
obj-$(CONFIG_FIREWIRE) += firewire-core.o
|
|
obj-$(CONFIG_FIREWIRE_OHCI) += firewire-ohci.o
|
|
obj-$(CONFIG_FIREWIRE_SBP2) += firewire-sbp2.o
|
|
obj-$(CONFIG_FIREWIRE_NET) += firewire-net.o
|
|
obj-$(CONFIG_FIREWIRE_NOSY) += nosy.o
|
|
obj-$(CONFIG_PROVIDE_OHCI1394_DMA_INIT) += init_ohci1394_dma.o
|
|
|
|
obj-$(CONFIG_FIREWIRE_KUNIT_UAPI_TEST) += uapi-test.o
|
|
obj-$(CONFIG_FIREWIRE_KUNIT_PACKET_SERDES_TEST) += packet-serdes-test.o
|