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

Linux Cross Reference
Linux-2.6.17/net/Makefile

Version: ~ [ 2.6.16 ] ~ [ 2.6.17 ] ~
Architecture: ~ [ ia64 ] ~ [ i386 ] ~ [ arm ] ~ [ ppc ] ~ [ sparc64 ] ~

  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 ifneq ($(CONFIG_IPV6),)
 23 obj-y                           += ipv6/
 24 endif
 25 obj-$(CONFIG_PACKET)            += packet/
 26 obj-$(CONFIG_NET_KEY)           += key/
 27 obj-$(CONFIG_NET_SCHED)         += sched/
 28 obj-$(CONFIG_BRIDGE)            += bridge/
 29 obj-$(CONFIG_IPX)               += ipx/
 30 obj-$(CONFIG_ATALK)             += appletalk/
 31 obj-$(CONFIG_WAN_ROUTER)        += wanrouter/
 32 obj-$(CONFIG_X25)               += x25/
 33 obj-$(CONFIG_LAPB)              += lapb/
 34 obj-$(CONFIG_NETROM)            += netrom/
 35 obj-$(CONFIG_ROSE)              += rose/
 36 obj-$(CONFIG_AX25)              += ax25/
 37 obj-$(CONFIG_IRDA)              += irda/
 38 obj-$(CONFIG_BT)                += bluetooth/
 39 obj-$(CONFIG_SUNRPC)            += sunrpc/
 40 obj-$(CONFIG_RXRPC)             += rxrpc/
 41 obj-$(CONFIG_ATM)               += atm/
 42 obj-$(CONFIG_DECNET)            += decnet/
 43 obj-$(CONFIG_ECONET)            += econet/
 44 obj-$(CONFIG_VLAN_8021Q)        += 8021q/
 45 obj-$(CONFIG_IP_DCCP)           += dccp/
 46 obj-$(CONFIG_IP_SCTP)           += sctp/
 47 obj-$(CONFIG_IEEE80211)         += ieee80211/
 48 obj-$(CONFIG_TIPC)              += tipc/
 49 
 50 ifeq ($(CONFIG_NET),y)
 51 obj-$(CONFIG_SYSCTL)            += sysctl_net.o
 52 endif

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

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.