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.
18 lines
328 B
Makefile
18 lines
328 B
Makefile
# $NetBSD: Makefile,v 1.8 2011/05/26 12:56:30 joerg Exp $
|
|
# from: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= rtquery
|
|
MAN= rtquery.8
|
|
BINDIR?= /usr/sbin
|
|
.if !defined(NOPIC)
|
|
LDSTATIC?=
|
|
.endif
|
|
#COPTS= -g -DDEBUG -Wall
|
|
|
|
CWARNFLAGS.clang+= -Wno-array-bounds
|
|
|
|
.include "../../Makefile.inc"
|
|
.include <bsd.prog.mk>
|