freebsd-dev/sys/modules/wtap/Makefile
Enji Cooper 193d9e768b sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic

Tested with:	`cd sys/modules; make ALL_MODULES=` on amd64
MFC after:	1 month
Sponsored by:	Dell EMC Isilon
2017-03-04 10:10:17 +00:00

28 lines
499 B
Makefile

# $FreeBSD$
# 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
.PATH: ${SRCTOP}/sys/dev/wtap/wtap_hal
SRCS += hal.c
.PATH: ${SRCTOP}/sys/dev/wtap/plugins
SRCS += visibility.c
SRCS += opt_global.h
.if !defined(KERNBUILDDIR)
CFLAGS+= -include opt_global.h
opt_global.h:
echo "#define VIMAGE 1" > ${.TARGET}
.endif
# Include kernel module makefile
.include <bsd.kmod.mk>