freebsd-dev/sys/modules/wtap/Makefile
Bryan Drewery 497e80911e Remove the old depend (mkdep) code and make FAST_DEPEND the one true way.
Reviewed by:	emaste, hselasky (partial), brooks (brief)
Discussed on:	arch@
Sponsored by:	EMC / Isilon Storage Division
Differential Revision:	https://reviews.freebsd.org/D5742
2016-03-30 23:50:23 +00:00

28 lines
508 B
Makefile

# $FreeBSD$
# Declare Name of kernel module
KMOD = wtap
# Enumerate Source files for kernel module
.PATH: ${.CURDIR}/../../dev/wtap
SRCS = if_wtap_module.c if_wtap.c if_medium.c
.PATH: ${.CURDIR}/../../dev/wtap/wtap_hal
SRCS += hal.c
.PATH: ${.CURDIR}/../../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>