diff options
Diffstat (limited to 'src/regress/lib/libc/ieeefp/except/Makefile')
-rw-r--r-- | src/regress/lib/libc/ieeefp/except/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/regress/lib/libc/ieeefp/except/Makefile b/src/regress/lib/libc/ieeefp/except/Makefile index ff620e016b..205331548f 100644 --- a/src/regress/lib/libc/ieeefp/except/Makefile +++ b/src/regress/lib/libc/ieeefp/except/Makefile | |||
@@ -1,5 +1,19 @@ | |||
1 | # $OpenBSD: Makefile,v 1.4 2002/02/18 11:22:26 art Exp $ | 1 | # $OpenBSD: Makefile,v 1.5 2004/07/22 19:29:42 kettenis Exp $ |
2 | 2 | ||
3 | PROG=except | 3 | PROG=except |
4 | 4 | ||
5 | REGRESS_TARGETS+= fltdiv fltinv fltovf fltund | ||
6 | |||
7 | fltdiv: ${PROG} | ||
8 | ./${PROG} fltdiv | ||
9 | |||
10 | fltinv: ${PROG} | ||
11 | ./${PROG} fltinv | ||
12 | |||
13 | fltovf: ${PROG} | ||
14 | ./${PROG} fltovf | ||
15 | |||
16 | fltund: ${PROG} | ||
17 | ./${PROG} fltund | ||
18 | |||
5 | .include <bsd.regress.mk> | 19 | .include <bsd.regress.mk> |