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

Linux Cross Reference
Linux/net/core/Makefile

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

  1 #
  2 # Makefile for the Linux networking core.
  3 #
  4 # Note! Dependencies are done automagically by 'make dep', which also
  5 # removes any old dependencies. DON'T put your own dependencies here
  6 # unless it's something special (ie not a .c file).
  7 #
  8 # Note 2! The CFLAGS definition is now in the main makefile...
  9 
 10 O_TARGET := core.o
 11 
 12 export-objs := netfilter.o profile.o
 13 
 14 obj-y := sock.o skbuff.o iovec.o datagram.o scm.o
 15 
 16 ifeq ($(CONFIG_SYSCTL),y)
 17 ifeq ($(CONFIG_NET),y)
 18 obj-y += sysctl_net_core.o
 19 endif
 20 endif
 21 
 22 obj-$(CONFIG_FILTER) += filter.o
 23 
 24 obj-$(CONFIG_NET) += dev.o dev_mcast.o dst.o neighbour.o rtnetlink.o utils.o
 25 
 26 obj-$(CONFIG_NETFILTER) += netfilter.o
 27 obj-$(CONFIG_NET_DIVERT) += dv.o
 28 obj-$(CONFIG_NET_PROFILE) += profile.o
 29 
 30 include $(TOPDIR)/Rules.make
 31 
 32 tar:
 33                 tar -cvf /dev/f1 .

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