diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2022-08-01 19:43:55 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2022-08-01 19:49:59 +0000 |
| commit | d1f5aa5633ea8520b03bd8ed90d57b020d89a45c (patch) | |
| tree | b82b1476e0591d647b4478d9de065bb58b8b5a0d | |
| parent | fb1526ca278301a495ea547ba18e22c4509e36e5 (diff) | |
| -rw-r--r-- | sys/modules/wtap/Makefile | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/modules/wtap/Makefile b/sys/modules/wtap/Makefile index 4386bf0dd7ad..d8ec70a2d3f0 100644 --- a/sys/modules/wtap/Makefile +++ b/sys/modules/wtap/Makefile @@ -1,27 +1,24 @@ # $FreeBSD$ +KMOD= wtap -# Declare Name of kernel module -KMOD = wtap - -# Enumerate Source files for kernel module .PATH: ${SRCTOP}/sys/dev/wtap -SRCS = if_wtap_module.c if_wtap.c if_medium.c +SRCS= if_wtap_module.c if_wtap.c if_medium.c .PATH: ${SRCTOP}/sys/dev/wtap/wtap_hal -SRCS += hal.c +SRCS+= hal.c .PATH: ${SRCTOP}/sys/dev/wtap/plugins -SRCS += visibility.c +SRCS+= visibility.c -SRCS += opt_global.h +SRCS+= opt_wlan.h opt_global.h .if !defined(KERNBUILDDIR) -CFLAGS+= -include opt_global.h - +.if defined(VIMAGE) opt_global.h: - echo "#define VIMAGE 1" > ${.TARGET} + echo "#define VIMAGE 1" >> ${.TARGET} +CFLAGS+= -include opt_global.h +.endif .endif -# Include kernel module makefile .include <bsd.kmod.mk> |
