xref: /openbsd-src/regress/lib/libc/time/strptime/Makefile (revision 04e256c05dd3a08af4ce447d36f6ff74822bc961)
1#	$OpenBSD: Makefile,v 1.3 2012/12/16 18:28:53 jasper Exp $
2
3PROG=		strptime_test
4SRCS=		main.c
5CLEANFILES+=	got
6
7REGRESS_TARGETS=do-reg
8do-reg: ${PROG}
9	./${PROG} < ${.CURDIR}/tests > got
10	diff -u ${.CURDIR}/expected got
11
12.include <bsd.regress.mk>
13