~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/Makefile

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/Makefile (Version linux-6.11.5) and /net/Makefile (Version linux-4.20.17)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 #                                                   2 #
  3 # Makefile for the linux networking.                3 # Makefile for the linux networking.
  4 #                                                   4 #
  5 # 2 Sep 2000, Christoph Hellwig <hch@infradead.      5 # 2 Sep 2000, Christoph Hellwig <hch@infradead.org>
  6 # Rewritten to use lists instead of if-stateme      6 # Rewritten to use lists instead of if-statements.
  7 #                                                   7 #
  8                                                     8 
  9 obj-y                           := devres.o so !!   9 obj-$(CONFIG_NET)               := socket.o core/
 10                                                    10 
 11 obj-$(CONFIG_COMPAT)            += compat.o    !!  11 tmp-$(CONFIG_COMPAT)            := compat.o
                                                   >>  12 obj-$(CONFIG_NET)               += $(tmp-y)
 12                                                    13 
 13 # LLC has to be linked before the files in net     14 # LLC has to be linked before the files in net/802/
 14 obj-$(CONFIG_LLC)               += llc/            15 obj-$(CONFIG_LLC)               += llc/
 15 obj-y                           += ethernet/ 8 !!  16 obj-$(CONFIG_NET)               += ethernet/ 802/ sched/ netlink/ bpf/
 16 obj-$(CONFIG_NETFILTER)         += netfilter/      17 obj-$(CONFIG_NETFILTER)         += netfilter/
 17 obj-$(CONFIG_INET)              += ipv4/           18 obj-$(CONFIG_INET)              += ipv4/
 18 obj-$(CONFIG_TLS)               += tls/            19 obj-$(CONFIG_TLS)               += tls/
 19 obj-$(CONFIG_XFRM)              += xfrm/           20 obj-$(CONFIG_XFRM)              += xfrm/
 20 obj-$(CONFIG_UNIX)              += unix/           21 obj-$(CONFIG_UNIX)              += unix/
 21 obj-y                           += ipv6/       !!  22 obj-$(CONFIG_NET)               += ipv6/
                                                   >>  23 obj-$(CONFIG_BPFILTER)          += bpfilter/
 22 obj-$(CONFIG_PACKET)            += packet/         24 obj-$(CONFIG_PACKET)            += packet/
 23 obj-$(CONFIG_NET_KEY)           += key/            25 obj-$(CONFIG_NET_KEY)           += key/
 24 obj-$(CONFIG_BRIDGE)            += bridge/         26 obj-$(CONFIG_BRIDGE)            += bridge/
 25 obj-$(CONFIG_NET_DEVLINK)       += devlink/    !!  27 obj-$(CONFIG_NET_DSA)           += dsa/
 26 obj-y                           += dsa/        << 
 27 obj-$(CONFIG_ATALK)             += appletalk/      28 obj-$(CONFIG_ATALK)             += appletalk/
 28 obj-$(CONFIG_X25)               += x25/            29 obj-$(CONFIG_X25)               += x25/
 29 obj-$(CONFIG_LAPB)              += lapb/           30 obj-$(CONFIG_LAPB)              += lapb/
 30 obj-$(CONFIG_NETROM)            += netrom/         31 obj-$(CONFIG_NETROM)            += netrom/
 31 obj-$(CONFIG_ROSE)              += rose/           32 obj-$(CONFIG_ROSE)              += rose/
 32 obj-$(CONFIG_AX25)              += ax25/           33 obj-$(CONFIG_AX25)              += ax25/
 33 obj-$(CONFIG_CAN)               += can/            34 obj-$(CONFIG_CAN)               += can/
 34 obj-$(CONFIG_BT)                += bluetooth/      35 obj-$(CONFIG_BT)                += bluetooth/
 35 obj-$(CONFIG_SUNRPC)            += sunrpc/         36 obj-$(CONFIG_SUNRPC)            += sunrpc/
 36 obj-$(CONFIG_AF_RXRPC)          += rxrpc/          37 obj-$(CONFIG_AF_RXRPC)          += rxrpc/
 37 obj-$(CONFIG_AF_KCM)            += kcm/            38 obj-$(CONFIG_AF_KCM)            += kcm/
 38 obj-$(CONFIG_STREAM_PARSER)     += strparser/      39 obj-$(CONFIG_STREAM_PARSER)     += strparser/
 39 obj-$(CONFIG_ATM)               += atm/            40 obj-$(CONFIG_ATM)               += atm/
 40 obj-$(CONFIG_L2TP)              += l2tp/           41 obj-$(CONFIG_L2TP)              += l2tp/
                                                   >>  42 obj-$(CONFIG_DECNET)            += decnet/
 41 obj-$(CONFIG_PHONET)            += phonet/         43 obj-$(CONFIG_PHONET)            += phonet/
 42 ifneq ($(CONFIG_VLAN_8021Q),)                      44 ifneq ($(CONFIG_VLAN_8021Q),)
 43 obj-y                           += 8021q/          45 obj-y                           += 8021q/
 44 endif                                              46 endif
 45 obj-$(CONFIG_IP_DCCP)           += dccp/           47 obj-$(CONFIG_IP_DCCP)           += dccp/
 46 obj-$(CONFIG_IP_SCTP)           += sctp/           48 obj-$(CONFIG_IP_SCTP)           += sctp/
 47 obj-$(CONFIG_RDS)               += rds/            49 obj-$(CONFIG_RDS)               += rds/
 48 obj-$(CONFIG_WIRELESS)          += wireless/       50 obj-$(CONFIG_WIRELESS)          += wireless/
 49 obj-$(CONFIG_MAC80211)          += mac80211/       51 obj-$(CONFIG_MAC80211)          += mac80211/
 50 obj-$(CONFIG_TIPC)              += tipc/           52 obj-$(CONFIG_TIPC)              += tipc/
 51 obj-$(CONFIG_NETLABEL)          += netlabel/       53 obj-$(CONFIG_NETLABEL)          += netlabel/
 52 obj-$(CONFIG_IUCV)              += iucv/           54 obj-$(CONFIG_IUCV)              += iucv/
 53 obj-$(CONFIG_SMC)               += smc/            55 obj-$(CONFIG_SMC)               += smc/
 54 obj-$(CONFIG_RFKILL)            += rfkill/         56 obj-$(CONFIG_RFKILL)            += rfkill/
 55 obj-$(CONFIG_NET_9P)            += 9p/             57 obj-$(CONFIG_NET_9P)            += 9p/
 56 obj-$(CONFIG_CAIF)              += caif/           58 obj-$(CONFIG_CAIF)              += caif/
 57 obj-$(CONFIG_DCB)               += dcb/        !!  59 ifneq ($(CONFIG_DCB),)
                                                   >>  60 obj-y                           += dcb/
                                                   >>  61 endif
 58 obj-$(CONFIG_6LOWPAN)           += 6lowpan/        62 obj-$(CONFIG_6LOWPAN)           += 6lowpan/
 59 obj-$(CONFIG_IEEE802154)        += ieee802154/     63 obj-$(CONFIG_IEEE802154)        += ieee802154/
 60 obj-$(CONFIG_MAC802154)         += mac802154/      64 obj-$(CONFIG_MAC802154)         += mac802154/
 61                                                    65 
                                                   >>  66 ifeq ($(CONFIG_NET),y)
 62 obj-$(CONFIG_SYSCTL)            += sysctl_net.     67 obj-$(CONFIG_SYSCTL)            += sysctl_net.o
                                                   >>  68 endif
                                                   >>  69 obj-$(CONFIG_WIMAX)             += wimax/
 63 obj-$(CONFIG_DNS_RESOLVER)      += dns_resolve     70 obj-$(CONFIG_DNS_RESOLVER)      += dns_resolver/
 64 obj-$(CONFIG_CEPH_LIB)          += ceph/           71 obj-$(CONFIG_CEPH_LIB)          += ceph/
 65 obj-$(CONFIG_BATMAN_ADV)        += batman-adv/     72 obj-$(CONFIG_BATMAN_ADV)        += batman-adv/
 66 obj-$(CONFIG_NFC)               += nfc/            73 obj-$(CONFIG_NFC)               += nfc/
 67 obj-$(CONFIG_PSAMPLE)           += psample/        74 obj-$(CONFIG_PSAMPLE)           += psample/
 68 obj-$(CONFIG_NET_IFE)           += ife/            75 obj-$(CONFIG_NET_IFE)           += ife/
 69 obj-$(CONFIG_OPENVSWITCH)       += openvswitch     76 obj-$(CONFIG_OPENVSWITCH)       += openvswitch/
 70 obj-$(CONFIG_VSOCKETS)  += vmw_vsock/              77 obj-$(CONFIG_VSOCKETS)  += vmw_vsock/
 71 obj-$(CONFIG_MPLS)              += mpls/           78 obj-$(CONFIG_MPLS)              += mpls/
 72 obj-$(CONFIG_NET_NSH)           += nsh/            79 obj-$(CONFIG_NET_NSH)           += nsh/
 73 obj-$(CONFIG_HSR)               += hsr/            80 obj-$(CONFIG_HSR)               += hsr/
 74 obj-$(CONFIG_NET_SWITCHDEV)     += switchdev/  !!  81 ifneq ($(CONFIG_NET_SWITCHDEV),)
 75 obj-$(CONFIG_NET_L3_MASTER_DEV) += l3mdev/     !!  82 obj-y                           += switchdev/
                                                   >>  83 endif
                                                   >>  84 ifneq ($(CONFIG_NET_L3_MASTER_DEV),)
                                                   >>  85 obj-y                           += l3mdev/
                                                   >>  86 endif
 76 obj-$(CONFIG_QRTR)              += qrtr/           87 obj-$(CONFIG_QRTR)              += qrtr/
 77 obj-$(CONFIG_NET_NCSI)          += ncsi/           88 obj-$(CONFIG_NET_NCSI)          += ncsi/
 78 obj-$(CONFIG_XDP_SOCKETS)       += xdp/            89 obj-$(CONFIG_XDP_SOCKETS)       += xdp/
 79 obj-$(CONFIG_MPTCP)             += mptcp/      << 
 80 obj-$(CONFIG_MCTP)              += mctp/       << 
 81 obj-$(CONFIG_NET_HANDSHAKE)     += handshake/  << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php