a216da57a6
Push -Wno-array-bounds down to the cases that depend on it. Selectively disable warnings for 3rd party software or non-trivial issues to be reviewed later to get clang -Werror to build most of the tree.
14 lines
243 B
Makefile
14 lines
243 B
Makefile
# $NetBSD: Makefile,v 1.5 2011/05/26 12:56:33 joerg Exp $
|
|
|
|
USE_FORT?= yes # setgid
|
|
PROG= pmap
|
|
SRCS= main.c pmap.c
|
|
BINGRP= kmem
|
|
BINMODE= 2555
|
|
LDADD= -lkvm
|
|
DPADD= ${LIBKVM}
|
|
|
|
CWARNFLAGS.clang+= -Wno-format-extra-args
|
|
|
|
.include <bsd.prog.mk>
|