mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-14 09:47:20 +00:00
13 lines
171 B
Makefile
13 lines
171 B
Makefile
|
#
|
||
|
# Makefile for the Linux VLAN layer.
|
||
|
#
|
||
|
|
||
|
obj-$(CONFIG_VLAN_8021Q) += 8021q.o
|
||
|
|
||
|
8021q-objs := vlan.o vlan_dev.o
|
||
|
|
||
|
ifeq ($(CONFIG_PROC_FS),y)
|
||
|
8021q-objs += vlanproc.o
|
||
|
endif
|
||
|
|