9380925b08
Added BACKWARDS directive to Makefile for compatibility. Completely changed the name space as per FSF's request. Fixed a line-addressing bug introduced by previous `fix', i.e., space preceding a digit acts a plus (+) operator, as in `1 1' == `2', and a plus operator by itself acts as +1, but a space by itself should not equal a plus operator, i.e., `1 ' != `1+' == `2'.
13 lines
196 B
Makefile
13 lines
196 B
Makefile
PROG= ed
|
|
CFLAGS+=-DVI_BANG -DDES -DBACKWARDS
|
|
SRCS= ed.c re.c buf.c cbc.c
|
|
|
|
LDADD+= -lcrypt
|
|
DPADD+= ${LIBCRYPT}
|
|
|
|
#LINKS= ${BINDIR}/ed ${BINDIR}/red
|
|
#MLINKS= ed.1 red.1
|
|
|
|
.include <bsd.prog.mk>
|
|
|