Makefile revision 1.7
1#	$OpenBSD: Makefile,v 1.7 2016/04/25 19:30:10 tedu Exp $
2PROG=	generic
3SRCS+=	main.c manager.c test_stdio.c test_tty.c
4NOMAN=	yes
5
6CFLAGS+=	-Wall -Werror
7
8REGRESS_TARGETS+=	test_normal
9
10test_normal: ${PROG}
11	./${PROG} | diff -I OpenBSD -u ${.CURDIR}/tests.out -
12
13.include <bsd.regress.mk>
14