1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for the Linux 802.x protocol layers 2 # Makefile for the Linux 802.x protocol layers. 4 # 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 fc.o >> 13 >> 14 obj-y := p8023.o 5 15 6 # Check the p8022 selections against net/core/ !! 16 obj-$(CONFIG_SYSCTL) += sysctl_net_802.o >> 17 >> 18 subdir-$(CONFIG_LLC) += transit >> 19 obj-$(CONFIG_LLC) += llc_sendpdu.o llc_utility.o cl2llc.o llc_macinit.o 7 obj-$(CONFIG_LLC) += p8022.o psnap.o 20 obj-$(CONFIG_LLC) += p8022.o psnap.o >> 21 >> 22 obj-$(CONFIG_TR) += p8022.o psnap.o tr.o >> 23 8 obj-$(CONFIG_NET_FC) += fc. 24 obj-$(CONFIG_NET_FC) += fc.o >> 25 9 obj-$(CONFIG_FDDI) += fdd 26 obj-$(CONFIG_FDDI) += fddi.o >> 27 10 obj-$(CONFIG_HIPPI) += hip 28 obj-$(CONFIG_HIPPI) += hippi.o >> 29 >> 30 obj-$(CONFIG_IPX) += p8022.o psnap.o >> 31 11 obj-$(CONFIG_ATALK) += p8022.o psnap.o 32 obj-$(CONFIG_ATALK) += p8022.o psnap.o 12 obj-$(CONFIG_STP) += stp.o !! 33 13 obj-$(CONFIG_GARP) += garp.o !! 34 14 obj-$(CONFIG_MRP) += mrp.o !! 35 include $(TOPDIR)/Rules.make >> 36 >> 37 cl2llc.c: cl2llc.pre >> 38 @rm -f $@ >> 39 sed -f ./pseudo/opcd2num.sed cl2llc.pre >cl2llc.c
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.