]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - bin/ed/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.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>