The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/net/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 5bd5b28bdf8a459560d37ee2a7dcbc4b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.