Sync usage with man page.
[netbsd-mini2440.git] / regress / lib / libc / md5sha / Makefile
blob2c64b3dc3d1d290f5e79277cab058bc845a0aac3
1 # $NetBSD: Makefile,v 1.3 2002/09/18 05:41:40 lukem Exp $
3 NOMAN= # defined
4 LDSTATIC= -static
6 PROG= test
7 WARNS= 1
9 # MD5 tests from RFC1321
10 # SHA1 tests from FIPS-180-1
12 regress:
13 ./test -r < ${.CURDIR}/md5test-in | diff ${.CURDIR}/md5test-out -
14 ./test -rs < ${.CURDIR}/sha1test-in | diff ${.CURDIR}/sha1test-out -
15 jot -s "" -b "a" -n 1000000 | ./test -rs | diff ${.CURDIR}/sha1test2-out -
17 .include <bsd.prog.mk>