mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
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
22 lines
401 B
Makefile
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>
|