diff options
Diffstat (limited to 'src/regress/lib/libc/printf/Makefile')
-rw-r--r-- | src/regress/lib/libc/printf/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/regress/lib/libc/printf/Makefile b/src/regress/lib/libc/printf/Makefile index c2e2732d6e..fba2bd105f 100644 --- a/src/regress/lib/libc/printf/Makefile +++ b/src/regress/lib/libc/printf/Makefile | |||
@@ -1,5 +1,13 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2008/09/07 20:36:10 martynas Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2020/07/08 01:18:04 schwarze Exp $ |
2 | 2 | ||
3 | PROG= fp | 3 | PROGS = fp string |
4 | |||
5 | REGRESS_TARGETS = ${PROGS:S/^/run-regress-/} | ||
6 | |||
7 | .for p in ${PROGS} | ||
8 | run-regress-${p}: ${p} | ||
9 | ./${p} | ||
10 | .PHONY: run-regress-${p} | ||
11 | .endfor | ||
4 | 12 | ||
5 | .include <bsd.regress.mk> | 13 | .include <bsd.regress.mk> |