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

Linux Cross Reference
Linux/net/Makefile

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #
  2 # Makefile for the linux networking.
  3 #
  4 # 2 Sep 2000, Christoph Hellwig <hch@caldera.de>
  5 # Rewritten to use lists instead of if-statements.
  6 #
  7 
  8 O_TARGET :=     network.o
  9 
 10 mod-subdirs :=  ipv4/netfilter ipv6/netfilter ipx irda atm netlink sched
 11 export-objs :=  netsyms.o
 12 
 13 subdir-y :=     core ethernet
 14 subdir-m :=     ipv4 # hum?
 15 
 16 
 17 subdir-$(CONFIG_NET)            += 802 sched
 18 subdir-$(CONFIG_INET)           += ipv4
 19 subdir-$(CONFIG_NETFILTER)      += ipv4/netfilter
 20 subdir-$(CONFIG_UNIX)           += unix
 21 subdir-$(CONFIG_IPV6)           += ipv6
 22 
 23 ifneq ($(CONFIG_IPV6),n)
 24 ifneq ($(CONFIG_IPV6),)
 25 subdir-$(CONFIG_NETFILTER)      += ipv6/netfilter
 26 endif
 27 endif
 28 
 29 subdir-$(CONFIG_KHTTPD)         += khttpd
 30 subdir-$(CONFIG_NETLINK)        += netlink
 31 subdir-$(CONFIG_PACKET)         += packet
 32 subdir-$(CONFIG_NET_SCHED)      += sched
 33 subdir-$(CONFIG_BRIDGE)         += bridge
 34 subdir-$(CONFIG_IPX)            += ipx
 35 subdir-$(CONFIG_ATALK)          += appletalk
 36 subdir-$(CONFIG_WAN_ROUTER)     += wanrouter
 37 subdir-$(CONFIG_X25)            += x25
 38 subdir-$(CONFIG_LAPB)           += lapb
 39 subdir-$(CONFIG_NETROM)         += netrom
 40 subdir-$(CONFIG_ROSE)           += rose
 41 subdir-$(CONFIG_AX25)           += ax25
 42 subdir-$(CONFIG_IRDA)           += irda
 43 subdir-$(CONFIG_SUNRPC)         += sunrpc
 44 subdir-$(CONFIG_ATM)            += atm
 45 subdir-$(CONFIG_DECNET)         += decnet
 46 subdir-$(CONFIG_ECONET)         += econet
 47 
 48 
 49 obj-y   := socket.o $(join $(subdir-y), $(patsubst %,/%.o,$(notdir $(subdir-y))))
 50 ifeq ($(CONFIG_NET),y)
 51 obj-$(CONFIG_MODULES)           += netsyms.o
 52 obj-$(CONFIG_SYSCTL)            += sysctl_net.o
 53 endif
 54 
 55 include $(TOPDIR)/Rules.make

~ [ 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.