]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - bin/ed/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 WARNS?= 2
8 LINKS=  ${BINDIR}/ed ${BINDIR}/red
9 MLINKS= ed.1 red.1
10
11 .if !defined(RELEASE_CRUNCH)
12 .if ${MK_OPENSSL} != "no"
13 CFLAGS+=-DDES
14 DPADD=  ${LIBCRYPTO}
15 LDADD=  -lcrypto
16 .endif
17 .endif
18
19 .include <bsd.prog.mk>