#
# Makefile for the Linux 802.1q protocol layer
#
# 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_1Q.o
O_OBJS   := vlan.o vlanproc.o vlan_dev.o

ifeq ($(CONFIG_VLAN_802_1Q),m)
M_OBJS  := $(O_TARGET)
endif

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

include $(TOPDIR)/Rules.make
