ebb9f0efa8
may contain crypto. The days of ITAR paranoia are over, and the simple macro tests that remain are sufficient.
17 lines
288 B
Makefile
17 lines
288 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ed
|
|
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
|
|
LINKS= ${BINDIR}/ed ${BINDIR}/red
|
|
MLINKS= ed.1 red.1
|
|
|
|
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
|
|
DISTRIBUTION=crypto
|
|
CFLAGS+=-DDES
|
|
WARNS?= 2
|
|
DPADD= ${LIBCRYPTO}
|
|
LDADD= -lcrypto
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|