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