]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - bin/ed/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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>