]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - bin/ed/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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 .if ${MK_OPENSSL} != "no"
12 CFLAGS+=-DDES
13 DPADD=  ${LIBCRYPTO}
14 LDADD=  -lcrypto
15 .endif
16 .endif
17
18 .include <bsd.prog.mk>