Use the same make technique as passwd and xntpd for the secure ed(1). This

will allow the secure/bin/ed directory to be cleaned out and the bin/Makefile
to be cleaned up.
This commit is contained in:
Mark Murray 1995-10-01 14:17:29 +00:00
parent 7329854ac4
commit 6eb5c24ff8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11106

View File

@ -1,8 +1,15 @@
# $Id: Makefile,v 1.9 1994/10/29 10:13:34 phk Exp $
# $Id: Makefile,v 1.10 1994/12/18 15:15:10 jkh Exp $
PROG= ed
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
LINKS= ${BINDIR}/ed ${BINDIR}/red
MLINKS= ed.1 red.1
.if !defined(NOCRYPT) && !defined(NOSECURE)
DISTRIBUTION=des
CFLAGS+=-DDES
LDADD+= -L${CRYPTOBJDIR} -ldescrypt
DPADD+= ${CRYPTOBJDIR}/libdescrypt.a
.endif
.include <bsd.prog.mk>