1# $FreeBSD: src/sys/modules/if_vlan/Makefile,v 1.1.2.1 2001/12/04 20:09:32 brooks Exp $ 2# $DragonFly: src/sys/net/vlan/Makefile,v 1.7 2008/09/17 08:51:30 sephe Exp $ 3 4KMOD= if_vlan 5SRCS= if_vlan.c 6SRCS+= opt_inet.h 7SRCS+= device_if.h bus_if.h 8CFLAGS+= -DNVLAN=0 9NOMAN= 10 11.if !defined(BUILDING_WITH_KERNEL) 12opt_inet.h: 13 echo "#define INET 1" > ${.TARGET} 14.endif 15 16.include <bsd.kmod.mk> 17