diff options
Diffstat (limited to 'src/regress/lib/libc/ieeefp/infinity/Makefile')
-rw-r--r-- | src/regress/lib/libc/ieeefp/infinity/Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/regress/lib/libc/ieeefp/infinity/Makefile b/src/regress/lib/libc/ieeefp/infinity/Makefile index a593fcf37d..ac102d8a63 100644 --- a/src/regress/lib/libc/ieeefp/infinity/Makefile +++ b/src/regress/lib/libc/ieeefp/infinity/Makefile | |||
@@ -1,9 +1,22 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2004/01/15 18:53:24 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2004/01/16 19:34:37 miod Exp $ |
2 | 2 | ||
3 | PROG= infinity | 3 | PROG= infinity |
4 | SRCS= infinity.c | ||
5 | 4 | ||
6 | DPADD+= ${LIBM} | 5 | DPADD+= ${LIBM} |
7 | LDADD+= -lm | 6 | LDADD+= -lm |
8 | 7 | ||
8 | REGRESS_TARGETS+= add mult neg pumpkin | ||
9 | |||
10 | add: ${PROG} | ||
11 | ./${PROG} -a | ||
12 | |||
13 | mult: ${PROG} | ||
14 | ./${PROG} -m | ||
15 | |||
16 | neg: ${PROG} | ||
17 | ./${PROG} -n | ||
18 | |||
19 | pumpkin: ${PROG} | ||
20 | ./${PROG} -p | ||
21 | |||
9 | .include <bsd.regress.mk> | 22 | .include <bsd.regress.mk> |