1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
16 lines
333 B
Makefile
16 lines
333 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 exists(../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
DISTRIBUTION=des
|
|
CFLAGS+=-DDES
|
|
LDADD+= -L${CIPHEROBJDIR} -lcipher
|
|
DPADD+= ${CIPHEROBJDIR}/libcipher.a
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|