~ [ 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-2.6.32.71)


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