Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
#
# Makefile for the Linux 802.x protocol layers.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

O_TARGET := 802.o
O_OBJS	  = p8023.o

ifeq ($(CONFIG_SYSCTL),y)
O_OBJS += sysctl_net_802.o
endif

ifeq ($(CONFIG_LLC),y)
SUB_DIRS += transit
O_OBJS += llc_sendpdu.o llc_utility.o cl2llc.o
OX_OBJS += llc_macinit.o
SNAP = y
endif

ifdef CONFIG_TR
O_OBJS += tr.o
	SNAP=y
endif

ifdef CONFIG_NET_FC
O_OBJS += fc.o
endif

ifdef CONFIG_FDDI
O_OBJS += fddi.o
endif

ifdef CONFIG_HIPPI
O_OBJS += hippi.o
endif

ifdef CONFIG_IPX
	SNAP=y
endif

ifdef CONFIG_ATALK
	SNAP=y
endif

ifeq ($(SNAP),y)
OX_OBJS += p8022.o psnap.o
endif


include $(TOPDIR)/Rules.make

cl2llc.c: cl2llc.pre
	sed -f ./pseudo/opcd2num.sed cl2llc.pre >cl2llc.c

tar:
		tar -cvf /dev/f1 .