2bc4fb1fcb
explicitly set WARNS for modules that fail with WARNS=5. Also, turn on -Wno-missing-noreturn for clang for some files. At the moment, among ~ 360 modules, - 2 (lua and zfs) need WARNS=0 - 1 (solaris) needs WARNS=1 - 136 need WARNS=3 (mostly due to sign-compare) - 4 need WARNS=4 - others can be compiled with WARNS=5 Discussed on tech-kern.
18 lines
232 B
Makefile
18 lines
232 B
Makefile
# $NetBSD: Makefile,v 1.2 2019/02/17 04:06:00 rin Exp $
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${S}/kern
|
|
|
|
KMOD= wapbl
|
|
|
|
CPPFLAGS+= -DWAPBL
|
|
|
|
#CWARNFLAGS.clang= -Wno-conversion
|
|
|
|
SRCS= vfs_wapbl.c
|
|
|
|
WARNS= 3
|
|
|
|
.include <bsd.kmodule.mk>
|