1 # SPDX-License-Identifier: GPL-2.0 2 # 3 # Makefile for the Linux TIPC layer 4 # 5 6 obj-$(CONFIG_TIPC) := tipc.o 7 8 tipc-y += addr.o bcast.o bearer.o \ 9 core.o link.o discover.o msg.o \ 10 name_distr.o subscr.o monitor.o name_table.o net.o \ 11 netlink.o netlink_compat.o node.o socket.o eth_media.o \ 12 topsrv.o group.o trace.o 13 14 CFLAGS_trace.o += -I$(src) 15 16 tipc-$(CONFIG_TIPC_MEDIA_UDP) += udp_media.o 17 tipc-$(CONFIG_TIPC_MEDIA_IB) += ib_media.o 18 tipc-$(CONFIG_SYSCTL) += sysctl.o 19 tipc-$(CONFIG_TIPC_CRYPTO) += crypto.o 20 21 obj-$(CONFIG_TIPC_DIAG) += tipc_diag.o 22 tipc_diag-y += diag.o
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.