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

Linux Cross Reference
Linux/net/802/Makefile

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

  1 #
  2 # Makefile for the Linux 802.x protocol layers.
  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 := 802.o
 11 
 12 export-objs = llc_macinit.o p8022.o psnap.o
 13 
 14 obj-y   = p8023.o
 15 
 16 obj-$(CONFIG_SYSCTL) += sysctl_net_802.o
 17 obj-$(CONFIG_LLC) += llc_sendpdu.o llc_utility.o cl2llc.o llc_macinit.o
 18 ifeq ($(CONFIG_SYSCTL),y)
 19 obj-y += sysctl_net_802.o
 20 endif
 21 
 22 ifeq ($(CONFIG_LLC),y)
 23 subdir-y += transit
 24 obj-y += llc_sendpdu.o llc_utility.o cl2llc.o llc_macinit.o
 25 SNAP = y
 26 endif
 27 
 28 ifdef CONFIG_TR
 29 obj-y += tr.o
 30         SNAP=y
 31 endif
 32 
 33 ifdef CONFIG_NET_FC
 34 obj-y += fc.o
 35 endif
 36 
 37 ifdef CONFIG_FDDI
 38 obj-y += fddi.o
 39 endif
 40 
 41 ifdef CONFIG_HIPPI
 42 obj-y += hippi.o
 43 endif
 44 
 45 ifdef CONFIG_IPX
 46         SNAP=y
 47 endif
 48 
 49 ifdef CONFIG_ATALK
 50         SNAP=y
 51 endif
 52 
 53 ifeq ($(SNAP),y)
 54 obj-y += p8022.o psnap.o
 55 endif
 56 
 57 include $(TOPDIR)/Rules.make
 58 
 59 cl2llc.c: cl2llc.pre
 60         sed -f ./pseudo/opcd2num.sed cl2llc.pre >cl2llc.c
 61 
 62 tar:
 63                 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.