freebsd-dev/sys/modules/if_vlan/Makefile
Kyle Evans 78373a5faa modules: adding some missing opt_* dependencies
if_vlan grew a dependency on opt_inet6.h in r356993
if_lagg and if_vlan both grew a dependency on opt_kern_tls.h in r351522

This is needed for standalone module builds of these guys.
2020-01-29 22:43:56 +00:00

10 lines
165 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/sys/net
KMOD= if_vlan
SRCS= if_vlan.c
SRCS+= opt_inet.h opt_inet6.h opt_kern_tls.h opt_vlan.h opt_ratelimit.h
.include <bsd.kmod.mk>