]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/wtap/Makefile
Remove spurious newline
[FreeBSD/FreeBSD.git] / sys / modules / wtap / Makefile
1 # $FreeBSD$
2
3
4 # Declare Name of kernel module
5 KMOD    =  wtap
6
7 # Enumerate Source files for kernel module
8 .PATH:  ${SRCTOP}/sys/dev/wtap
9 SRCS    =  if_wtap_module.c if_wtap.c if_medium.c
10
11 .PATH:  ${SRCTOP}/sys/dev/wtap/wtap_hal
12 SRCS    += hal.c
13
14 .PATH:  ${SRCTOP}/sys/dev/wtap/plugins
15 SRCS    += visibility.c
16
17 SRCS    += opt_global.h
18
19 .if !defined(KERNBUILDDIR)
20 CFLAGS+=        -include opt_global.h
21
22 opt_global.h:
23         echo "#define VIMAGE 1" > ${.TARGET}
24 .endif
25
26 # Include kernel module makefile
27 .include <bsd.kmod.mk>