diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-12-10 19:19:50 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-12-10 19:19:50 +0000 |
commit | ae69796dac1fb78e43052e2a7fdc3c552e2a5a09 (patch) | |
tree | bbf74a4100c7992dbffef34972d69fca7c165980 /regress/usr.bin/xlint | |
parent | 3c8347366fc53a1e1a3e4ffcd89654b6211887c4 (diff) |
Add a generate target
Diffstat (limited to 'regress/usr.bin/xlint')
-rw-r--r-- | regress/usr.bin/xlint/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/regress/usr.bin/xlint/Makefile b/regress/usr.bin/xlint/Makefile index ac49137934b..da9aabffe49 100644 --- a/regress/usr.bin/xlint/Makefile +++ b/regress/usr.bin/xlint/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2005/12/10 19:16:56 cloder Exp $ +# $OpenBSD: Makefile,v 1.16 2005/12/10 19:19:49 cloder Exp $ TEST_MODULES= 1 2 3 4 5 6 7 8 9 10 12 13 LINT= lint @@ -6,11 +6,18 @@ LINTFLAGS?= -chapbx .for i in ${TEST_MODULES} REGRESS_TARGETS+= test-${i} +GENERATE_TARGETS+=generate-${i} test-${i}: ${LINT} ${LINTFLAGS} test-${i}.c 2>&1 | diff -u ${.CURDIR}/test-${i}.c.exp - + +generate-${i}: + ${LINT} ${LINTFLAGS} test-${i}.c 2>&1 > ${.CURDIR}/test-${i}.c.exp .endfor -.PHONY: ${REGRESS_TARGETS} +.PHONY: ${REGRESS_TARGETS} generate ${GENERATE_TARGETS} + +generate: ${GENERATE_TARGETS} + NOOBJ= Yes |