blob: ebb4fb8255927791131cfa7fc2a8629b6af3f727 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.3 2017/07/22 13:50:54 anton Exp $
REGRESS_TARGETS= send
PROG= edit
CFLAGS+= -Wall
LDADD+= -lutil
CLEANFILES+= edit.c
edit.c: ${.CURDIR}/../../bin/ksh/edit/edit.c
@cp ${.CURDIR}/../../bin/ksh/edit/edit.c .
send: edit
sh ${.CURDIR}/send.sh
.include <bsd.regress.mk>
|