From f6412b224fd95de2c6cb5cbde965cad3ec73d765 Mon Sep 17 00:00:00 2001 From: rillig Date: Tue, 14 Sep 2021 20:36:02 +0000 Subject: [PATCH] usr.sbin: enable lint for all programs --- usr.sbin/Makefile.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/usr.sbin/Makefile.inc b/usr.sbin/Makefile.inc index 36a50847023d..7159c4931cd6 100644 --- a/usr.sbin/Makefile.inc +++ b/usr.sbin/Makefile.inc @@ -1,6 +1,11 @@ -# $NetBSD: Makefile.inc,v 1.7 2016/01/23 21:22:50 christos Exp $ +# $NetBSD: Makefile.inc,v 1.8 2021/09/14 20:36:02 rillig Exp $ # from: @(#)Makefile.inc 8.1 (Berkeley) 6/6/93 BINDIR?= /usr/sbin WARNS?= 4 CPPFLAGS+= -D_KERNTYPES + +.include +.if ${MKLINT} != "no" && ${LINT_SUPPORTED:Uyes} == "yes" +realall: lint +.endif