xref: /openbsd/regress/lib/libc/time/strptime/Makefile (revision 274d7c50)
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