If lint(1) is not "lint", don't try to lint the xlint compat-libs. A

third-party lint is probably being used.
This commit is contained in:
Mark Murray 2003-06-15 13:03:37 +00:00
parent cd4f6ebb13
commit 1dd991a05b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116402

View File

@ -1,6 +1,12 @@
# $NetBSD: Makefile,v 1.2 1995/07/03 21:23:45 cgd Exp $
# $FreeBSD$
SUBDIR= lint1 lint2 xlint llib
.if ${LINT} == "lint"
_llib= llib
.else
_llib=
.endif
SUBDIR= lint1 lint2 xlint ${_llib}
.include <bsd.subdir.mk>