1# $OpenBSD: Makefile,v 1.10 2020/04/01 15:26:53 claudio Exp $ 2PROG= generic 3SRCS= main.c manager.c test_stdio.c test_tty.c 4NOMAN= yes 5 6LDADD+= -lutil 7CFLAGS+= -Wall -Werror 8 9REGRESS_TARGETS+= test_normal 10 11test_normal: ${PROG} 12 ulimit -c unlimited && \ 13 ./${PROG} | diff -I OpenBSD -u ${.CURDIR}/tests.out - 14 15.include <bsd.regress.mk> 16