mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-20 10:16:34 +01:00
f079582484
init and ed, by pointing to real sources.
14 lines
322 B
Makefile
14 lines
322 B
Makefile
# $Id: Makefile,v 1.9 1994/10/29 10:13:34 phk Exp $
|
|
|
|
PROG= ed
|
|
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
|
|
.PATH: ${.CURDIR}/../../../bin/ed
|
|
LINKS= ${BINDIR}/ed ${BINDIR}/red
|
|
NOMAN= true
|
|
|
|
CFLAGS+=-DDES
|
|
LDADD+= -L../../lib/libdescrypt -ldescrypt
|
|
DPADD+= ../../lib/libcrypt/libdescrypt.a
|
|
|
|
.include <bsd.prog.mk>
|