freebsd-dev/sys/modules/wtap/Makefile
Warner Losh 031beb4e23 sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:54:58 -06:00

24 lines
402 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>