summaryrefslogtreecommitdiff
path: root/regress/usr.bin/xlint/Makefile
blob: 0324ddb189f8978aa55d26a2560d957177d61419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# $OpenBSD: Makefile,v 1.7 2005/11/30 19:44:08 cloder Exp $

TEST_MODULES=	1 2 3 4 5 6 7
LINT=		lint
LINTFLAGS?=	-chapbx

.for i in ${TEST_MODULES}
REGRESS_TARGETS+= test-${i}
test-${i}:
	${LINT} ${LINTFLAGS} test-${i}.c 2>&1 | diff -u - ${.CURDIR}/test-${i}.c.exp
.endfor

.PHONY:	${REGRESS_TARGETS}

NOOBJ= Yes

.include <bsd.regress.mk>