xref: /openbsd/regress/bin/ksh/edit/Makefile (revision 5f46c183)
1# $OpenBSD: Makefile,v 1.5 2021/07/10 07:10:31 anton Exp $
2
3KSH=	/bin/ksh
4
5PROG=		edit
6CFLAGS+=	-Wall
7LDADD+=		-lutil
8
9REGRESS_SETUP_ONCE=	${PROG}
10
11REGRESS_TARGETS+=	emacs
12REGRESS_TARGETS+=	vi
13
14emacs:
15	sh ${.CURDIR}/emacs.sh ${.CURDIR} ${KSH}
16
17vi:
18	sh ${.CURDIR}/vi.sh ${.CURDIR} ${KSH}
19
20.include <bsd.regress.mk>
21