Module Name: src Committed By: rillig Date: Tue Sep 14 20:36:02 UTC 2021
Modified Files: src/usr.sbin: Makefile.inc Log Message: usr.sbin: enable lint for all programs To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/Makefile.inc diff -u src/usr.sbin/Makefile.inc:1.7 src/usr.sbin/Makefile.inc:1.8 --- src/usr.sbin/Makefile.inc:1.7 Sat Jan 23 21:22:50 2016 +++ src/usr.sbin/Makefile.inc Tue Sep 14 20:36:02 2021 @@ -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 <bsd.own.mk> +.if ${MKLINT} != "no" && ${LINT_SUPPORTED:Uyes} == "yes" +realall: lint +.endif