]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/ed/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / bin / ed / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   ed
6 SRCS=   buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
7 LINKS=  ${BINDIR}/ed ${BINDIR}/red
8 MLINKS= ed.1 red.1
9
10 .if !defined(RELEASE_CRUNCH) && \
11         ${MK_OPENSSL} != "no" && \
12         ${MK_ED_CRYPTO} != "no"
13 CFLAGS+=-DDES
14 DPADD=  ${LIBCRYPTO}
15 LDADD=  -lcrypto
16 .endif
17
18 .include <bsd.prog.mk>