xref: /dragonfly/sys/net/vlan/Makefile (revision 03be034e)
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.3 2005/02/18 11:41:42 corecode Exp $
3
4.PATH: ${.CURDIR}/../../net
5
6KMOD=	if_vlan
7SRCS=	if_vlan.c opt_inet.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