opnsense-src/sys/modules/wtap/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00

22 lines
401 B
Makefile

KMOD= wtap
.PATH: ${SRCTOP}/sys/dev/wtap
SRCS= if_wtap_module.c if_wtap.c if_medium.c
.PATH: ${SRCTOP}/sys/dev/wtap/wtap_hal
SRCS+= hal.c
.PATH: ${SRCTOP}/sys/dev/wtap/plugins
SRCS+= visibility.c
SRCS+= opt_wlan.h opt_global.h
.if !defined(KERNBUILDDIR)
.if defined(VIMAGE)
opt_global.h:
echo "#define VIMAGE 1" >> ${.TARGET}
CFLAGS+= -include opt_global.h
.endif
.endif
.include <bsd.kmod.mk>