diff options
Diffstat (limited to 'src/regress/lib/libc/arch/alpha/divremtest/Makefile')
-rw-r--r-- | src/regress/lib/libc/arch/alpha/divremtest/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/regress/lib/libc/arch/alpha/divremtest/Makefile b/src/regress/lib/libc/arch/alpha/divremtest/Makefile new file mode 100644 index 0000000000..bd3b12f537 --- /dev/null +++ b/src/regress/lib/libc/arch/alpha/divremtest/Makefile | |||
@@ -0,0 +1,29 @@ | |||
1 | # $NetBSD: Makefile,v 1.1 1995/04/24 05:53:34 cgd Exp $ | ||
2 | |||
3 | PROG= divremtest | ||
4 | NOMAN= | ||
5 | |||
6 | CLEANFILES+= mkcases cases.c mktestcases testcases | ||
7 | |||
8 | divremtest.c: cases.c | ||
9 | |||
10 | cases.c: mkcases | ||
11 | /bin/rm -f cases.c | ||
12 | mkcases > cases.c | ||
13 | |||
14 | # a typical strategy to use this: | ||
15 | # compile a NetBSD divremtest binary, an OSF/1 divremtest binary, and an | ||
16 | # OSF/1 mktestcases binary. You then run mktestecases | divremtest -g | ||
17 | # on an OSF/1 machine, and pipe the output to an rsh to a NetBSD machine | ||
18 | # which then runs divremtest. You can test an infinite number of random | ||
19 | # values that way; I like to put a 'dd' in, so I can see how much I've done. | ||
20 | |||
21 | testcases: mktestcases divremtest | ||
22 | /bin/rm -f testcases | ||
23 | mktestcases | divremtest -g > testcases | ||
24 | |||
25 | regress: | ||
26 | @echo THIS TEST CANNOT BE RUN AUTOMATICALLY. | ||
27 | @false | ||
28 | |||
29 | .include <bsd.prog.mk> | ||