blob: c49d1a07f21718e120bfb26a921674eca6a07940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile,v 1.6 2004/06/30 03:26:27 jmc Exp $
NOMAN= # defined
PROG= divremtest
COPTS+= -Wall -Wno-format -Wno-parentheses -Wno-uninitialized
GOODRESULT= 3f181846a7fd931b9aeafeac6b32d24c
regress: ${PROG}
[ `./${PROG} | md5` = ${GOODRESULT} ]
.include <bsd.prog.mk>
|