ac2875fa16
Note: tcsh(1) has a MK_TCSH=no test, so this should be a separate package, which requires pre-install/post-install scripts, to be added later. Sponsored by: The FreeBSD Foundation
17 lines
284 B
Makefile
17 lines
284 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= ed
|
|
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 ${MK_OPENSSL} != "no" && ${MK_ED_CRYPTO} != "no"
|
|
CFLAGS+=-DDES
|
|
LIBADD= crypto
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|